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
Explain about the functions strcat() and strcmp()?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
why do some people write if(0 == x) instead of if(x == 0)?
Can a variable be both static and volatile in c?
Do you know what are bitwise shift operators in c programming?
What are pointers in C? Give an example where to illustrate their significance.
What is the value of uninitialized variable in c?
What is the 'named constructor idiom'?
How do we open a binary file in Read/Write mode in C?
What is console in c language?
What is the difference between int main and void main?
Explain what is meant by 'bit masking'?
What are the features of c languages?
Explain indirection?