| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main() { |
| 4 | printf("Size of int: %zu bytes\n", sizeof(int)); |
| 5 | printf("Size of char: %zu byte\n", sizeof(char)); |
| 6 | printf("Size of float: %zu bytes\n", sizeof(float)); |
| 7 | return 0; |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected