Answer Posted / rukmanee
'C' is a middle language because it has the faster
programming efficiency as compared to the machine language
or low level language and has faster machine efficiency
also as compared to the high level language..
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are the salient features of c languages?
What is hash table in c?
Can you please explain the scope of static variables?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What are qualifiers?
What type of function is main ()?
What is "Duff's Device"?
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 is static function in c?
Explain how can I remove the trailing spaces from a string?
What is calloc in c?
Why do we use pointer to pointer in c?
Define circular linked list.
Why is sprintf unsafe?