print ur name without using any semicolon in c/c++....
Answer Posted / vignesh1988i
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
if(printf("vignesh s r "))
{
i=1;
}
getch();
}
| Is This Answer Correct ? | 72 Yes | 47 No |
Post New Answer View All Answers
What is ponter?
What is the best way to comment out a section of code that contains comments?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Can variables be declared anywhere in c?
When can a far pointer be used?
What is variable initialization and why is it important?
What is I ++ in c programming?
Can you mix old-style and new-style function syntax?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Are pointers integers in c?
What is #include stdlib h?
What is printf () in c?
What extern c means?
How a string is stored in c?
What are keywords c?