When is a “switch” statement preferable over an “if” statement?
No Answer is Posted For this Question
Be the First to Post Answer
What is an auto variable in c?
who did come first hen or agg
How can I split up a string into whitespace-separated fields?
application of static variables in real time
diff .between strcture and union
State two uses of pointers in C?
What is double pointer?
Explain what are the different data types in c?
Explain what is the purpose of "extern" keyword in a function declaration?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
When should the const modifier be used?