Skip to content

Instantly share code, notes, and snippets.

@sojohnnysaid
Created January 6, 2018 14:14
Embed
What would you like to do?
#include <stdio.h>
int main(void){
// example of the sizeof() operator
int num1 = 25;
printf("Size of num1 in bytes:\t%lu\n", sizeof(num1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment