Skip to content

Commit

Permalink
Added
Browse files Browse the repository at this point in the history
  • Loading branch information
coolanmol committed Feb 10, 2018
1 parent 1c343d5 commit 9363dd7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions 2.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include<stdio.h>
int main()
{
printf("The size of char %ld\n",sizeof('3'));
printf("the sizeof string %ld\n",sizeof("3"));
printf("The size of int %ld\n",sizeof(3));
return 0;
}

0 comments on commit 9363dd7

Please sign in to comment.