Are the expressions * ptr ++ and ++ * ptr same?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
Explain what is the concatenation operator?
Is a house a shell structure?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Why can’t constant values be used to define an array’s initial size?
Magic square
What will happen when freeing memory twice
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
What is local and global variable in c?
What are type modifiers in c?
What is structure pointer in c?