Answer Posted / chirag garg
printf("% \bd");
| Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
What is 2 d array in c?
Tell us two differences between new () and malloc ()?
What are local static variables? How can you use them?
What are c header files?
What is equivalent to ++i+++j?
Why doesn't C support function overloading?
What is dynamic memory allocation?
Explain c preprocessor?
How do you define a string?
What is data structure in c and its types?
develop algorithms to add polynomials (i) in one variable
What is volatile variable how do you declare it?
Is c a great language, or what?
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
What are valid signatures for the Main function?