print ur name without using any semicolon in c/c++....
Answers were Sorted based on User's Feedback
Answer / sanjeet
#include<stdio.h>
int main()
{
if(printf("Madhu"))
{
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shariq khan
#include<stdio.h>
#define A;
void main()
{
printf("shariq khan")A
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sri lakshmi
#include<stdio.h>
void main()
{
if(printf("lakshmi"))
{
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / annie
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("INDIA"))
getch();
}
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / baba kancha
#include<stdio.h>
int main( )
{ if(printf("baba")
{
}
}
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / g.rajitha
#include<iostream.h>
void main()
{
if(cout<<RAJITHA){}
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ravi pandey
#include<stdio.h>
main()
{if(printf("ravi"))
}
| Is This Answer Correct ? | 9 Yes | 15 No |
Answer / shubhankar sisodia
#include<stdio.h>
main()
{if(printf("shubhankar"))
}
| Is This Answer Correct ? | 10 Yes | 17 No |
Answer / gprabha
#include<stdio.h>
void main()
{
int i=1;
if(printf("Prabha"))
{
i++;
}
getch();
}
| Is This Answer Correct ? | 7 Yes | 16 No |
Answer / revathi pawar
#include<stdio.h>
{
int i;
if(printf("bill gates"))
i=1;
}
| Is This Answer Correct ? | 20 Yes | 47 No |
What is define directive?
write the program to find multiplication of 2-D matrix??????????
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is a Deque?
When should volatile modifier be used?
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
State the difference between x3 and x[3].
C program to find frequency of each character in a text file?
Is fortran faster than c?
What is key word in c language?
Is c programming hard?
can we implement multi-threads in c.