print ur name without using any semicolon in c/c++....

Answers were Sorted based on User's Feedback



print ur name without using any semicolon in c/c++......

Answer / 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

print ur name without using any semicolon in c/c++......

Answer / 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

print ur name without using any semicolon in c/c++......

Answer / amit mishra

#include<stdio.h>
void main()
{
if (clrscr())
if(printf("\n Asheesh sharma"))
{
}

if(printf("\n Asha sharma"))
{
}
if(printf("\n Amit mishra"))
{
}
if(printf("\n Ankit mishra"))
{
}
if(getch())
{
}


}

Is This Answer Correct ?    19 Yes 2 No

print ur name without using any semicolon in c/c++......

Answer / vinay

#include<stdio.h>
main()
{ while(!printf("vinay"))
{
}}

Is This Answer Correct ?    17 Yes 6 No

print ur name without using any semicolon in c/c++......

Answer / harendra kumar

#include<stdio.h>
void main()
{
if(printf("harru"))
{
}
}

Is This Answer Correct ?    10 Yes 0 No

print ur name without using any semicolon in c/c++......

Answer / deepjoy das

#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Deep"))
{
}
}

Is This Answer Correct ?    7 Yes 0 No

print ur name without using any semicolon in c/c++......

Answer / vidya

#include<stdio.h>
int main()
{
switch(printf("vidya"))
{
}
}

Is This Answer Correct ?    4 Yes 0 No

print ur name without using any semicolon in c/c++......

Answer / kumutha

#include<stdio.h>
void main()
{
if(printf("kumutha"))
}

Is This Answer Correct ?    4 Yes 3 No

print ur name without using any semicolon in c/c++......

Answer / bony islam laskar

check it out........ur search is ovr.

#include<stdio.h>
void main()
{
if(printf("bony"))
}

Is This Answer Correct ?    34 Yes 34 No

print ur name without using any semicolon in c/c++......

Answer / manish kumar

#include<stdio.h>
#include<conio.h>
int main()
{
while(printf("manish")&&getch())
{
}
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what is difference between null and nul in c language

2 Answers  


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 Answers   Ramco,


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

0 Answers   Wilco,


What is the use of a semicolon (;) at the end of every program statement?

1 Answers  


What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }

5 Answers   ADITI, Wipro,






IS Doon college of Engn.. has good faculty

1 Answers  


main() { float a=3.2e40; printf("%d",a); }

9 Answers   Satyam,


What is a good way to implement complex numbers in c?

0 Answers  


What are the modifiers available in c programming language?

0 Answers  


Can i use Two or More Main Funtion in any C program.?

4 Answers  


Explain what are header files and explain what are its uses in c programming?

0 Answers  


Write a c program to demonstrate Type casting in c?

2 Answers  


Categories