what are the facialities provided by you after the
selection of the student.
No Answer is Posted For this Question
Be the First to Post Answer
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
What does typeof return in c?
How does struct work in c?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
What does sizeof int return?
What is the difference between functions getch() and getche()?
What is the g value paradox?
Once I have used freopen, how can I get the original stdout (or stdin) back?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
why arithmetic operation can’t be performed on a void pointer?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,