What is the significance of an algorithm to C programming?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
How can you restore a redirected standard stream?
Is main a keyword in c?
What is function prototype?
Is c++ based on c?
How can I write a function analogous to scanf?
When the macros gets expanded?
What is sizeof int?
What are the ways to a null pointer can use in c programming language?
List a few unconditional control statement in c.
Can you write the algorithm for Queue?
When should volatile modifier be used?
Why c is faster than c++?