Explain what is #line used for?
No Answer is Posted For this Question
Be the First to Post Answer
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
what is a constant pointer in C
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
write a program for the normal snake games find in most of the mobiles.
When can a far pointer be used?
write a program to find lcm and hcf of two numbers??
who invented c
Ow can I insert or delete a line (or record) in the middle of a file?
What is external and internal variables What is dynamic memory allocation what is storage classes in C
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?