Skip to content

Instantly share code, notes, and snippets.

@gnitnaw
Created March 29, 2016 19:03
Show Gist options
  • Save gnitnaw/0b32e9e3b9d75e3c56ab8971df085b90 to your computer and use it in GitHub Desktop.
Save gnitnaw/0b32e9e3b9d75e3c56ab8971df085b90 to your computer and use it in GitHub Desktop.
DeepC -- example 4
#include <stdio.h>
Struct X {int a; char b; int c;};
int main(void) {
printf("%zd\n", sizeof(int));
printf("%zd\n", sizeof(char));
printf("%zd\n", sizeof(struct X));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment