print ur name without using any semicolon in c/c++....
Answer Posted / madhu
This is the correct answer,
Question is without using semicolon,
#include<stdio.h>
int main()
{
if(printf("Madhu"))
{
}
}
| Is This Answer Correct ? | 87 Yes | 12 No |
Post New Answer View All Answers
What are c identifiers?
How can I do serial ("comm") port I/O?
What is main return c?
why programs in c are running with out #include
What is the difference between scanf and fscanf?
What is the correct code to have following output in c using nested for loop?
What is a sequential access file?
Do array subscripts always start with zero?
Can we change the value of static variable in c?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is c mainly used for?
What does struct node * mean?
Explain zero based addressing.
What is self-referential structure in c programming?
Explain how can you restore a redirected standard stream?