Explain the use of fflush() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is %lu in c?
What does extern mean in a function declaration?
What is main function in c?
What is data type long in c?
Why does everyone say not to use scanf? What should I use instead?
What are actual arguments?
What is the difference between functions getch() and getche()?
Explain the advantages and disadvantages of macros.
what is a far pointer
12 Answers ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What is the function of multilevel pointer in c?