342 views

1 Answer

4 votes
4 votes

Nothing special in this code for running

So, it will simply print 10,100,101

Related questions

0 votes
0 votes
1 answer
1
Desert_Warrior asked May 16, 2016
3,671 views
#include <stdio.h int main() { struct node { int a; int b; int c; }; struct node s = { 3, 5, 6 }; struct node *pt = &s; printf("%d\n", *((int*)pt+1)); return 0; }