Post New Answer View All Answers
What is the description for syntax errors?
What are the types of i/o functions?
Tell me when would you use a pointer to a function?
What is the best way to store flag values in a program?
How can type-insensitive macros be created?
Give me the code of in-order recursive and non-recursive.
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 the different types of linkage exist in c?
Why & is used in scanf in c?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What is the size of enum in c?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What are the __date__ and __time__ preprocessor commands?
With the help of using classes, write a program to add two numbers.
about c language