MCPcopy Create free account
hub / github.com/CodeWithHarry/The-Ultimate-C-Programming-Course / main

Function main

Chapter 1/04_sizeof.c:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2
3int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected