print ur name without using any semicolon in c/c++....
Answer Posted / kumutha
#include<stdio.h>
void main()
{
if(printf("kumutha"))
}
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Can we declare function inside main?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What is the argument of a function in c?
What is malloc calloc and realloc in c?
What are the advantages of c preprocessor?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Explain how do you convert strings to numbers in c?
What is derived datatype in c?
What are valid operations on pointers?
What is sizeof return in c?
Why do we use main function?
What do you mean by recursion in c?
Can you please explain the difference between exit() and _exit() function?
What is the difference between local variable and global variable in c?