which type of question asked from c / c++ in interview.
Answer Posted / abhradeep chatterjee
Any Type.
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
Why header file is used in c?
What are structures and unions? State differencves between them.
What are different types of variables in c?
Why is c not oop?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
How do I swap bytes?
How will you delete a node in DLL?
What is pointer to pointer in c with example?
Define Spanning-Tree Protocol (STP)
How do you redirect a standard stream?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the right way to use errno?
What is difference between Structure and Unions?
Explain how do you declare an array that will hold more than 64kb of data?