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 |
can we implement multi-threads in c.
Write a program using bitwise operators to invert even bits of a given number.
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
Write a program to generate random numbers in c?
Is linux written in c?
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
How can I list all of the predefined identifiers?
what is the difference between exit() and _exit() functions?
What type of function is main ()?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the use of gets and puts?