Tell me when is a void pointer used?
No Answer is Posted For this Question
Be the First to Post Answer
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the mean of function?
What are identifiers c?
Explain about the constants which help in debugging?
Explain what is the best way to comment out a section of code that contains comments?
c programming of binary addition of two binary numbers
How does free() know explain how much memory to release?
What does the format %10.2 mean when included in a printf statement?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
What is the use of sizeof () in c?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }