How do you print only part of a string?
What are the advantage of c language?
How does free() know explain how much memory to release?
If the size of int data type is two bytes, what is the range of signed int data type?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What does sizeof int return?
Is register a keyword in c?
What is realloc in c?
What is c language in simple words?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
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
Difference between Function to pointer and pointer to function
Explain zero based addressing.
How can I read in an object file and jump to locations in it?
What are the __date__ and __time__ preprocessor commands?