Skip to content

Instantly share code, notes, and snippets.

@rpt
Created April 19, 2010 15:36
Show Gist options
  • Save rpt/371177 to your computer and use it in GitHub Desktop.
Save rpt/371177 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
printf("short int = %i bitów\n", sizeof(short int) * 8);
printf("int = %i bitów\n", sizeof(int) * 8);
printf("long int = %i bitów\n", sizeof(long int) * 8);
printf("long long = %i bitów\n", sizeof(long long) * 8);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment