c program to print a name without using semicolon

Answers were Sorted based on User's Feedback



c program to print a name without using semicolon ..

Answer / amehga

main()
{
if(printf("AMEGHA"))
{
}
}

Is This Answer Correct ?    56 Yes 5 No

c program to print a name without using semicolon ..

Answer / amegha

main()
{
if(printf("AMEGHA")
{
}
}

Is This Answer Correct ?    36 Yes 17 No

c program to print a name without using semicolon ..

Answer / s

main()
{
if(printf("SIVAN RAJA C"))
{
}
}

Is This Answer Correct ?    19 Yes 4 No

c program to print a name without using semicolon ..

Answer / satya

main()
{
if(printf("SATYA"))
{
}
}

Is This Answer Correct ?    8 Yes 3 No

c program to print a name without using semicolon ..

Answer / jeke kumar gochhayat

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

Is This Answer Correct ?    9 Yes 5 No

c program to print a name without using semicolon ..

Answer / rajesh dixit

#include<stdio.h>
#include<coio.h>
void main()
{
if(printf("rajesh dixit"))
{
}
getch();
}

Is This Answer Correct ?    6 Yes 2 No

c program to print a name without using semicolon ..

Answer / 080132

#include<stdio.h>
#include<conio.h>
void main{
if(printf("I am arafat from jstu")){


}
if(printf(" ")){


}
if(getch()){


}


}

Is This Answer Correct ?    3 Yes 0 No

c program to print a name without using semicolon ..

Answer / subash

main()
{
if(printf("SATYA"))
{
}
}

Is This Answer Correct ?    0 Yes 1 No

c program to print a name without using semicolon ..

Answer / nirbhay gupta

#define $ ;
main()
{
printf("i am Nirbhay Gupta")$
printf("right")$
}

Is This Answer Correct ?    5 Yes 18 No

Post New Answer

More C Interview Questions

Write a program which returns the first non repetitive character in the string?

0 Answers   Expedia,


Explain two-dimensional array.

0 Answers  


i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement

5 Answers  


Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.

2 Answers  


Can we change the value of static variable in c?

0 Answers  






diff. between *p and **p

3 Answers  


what does static variable mean?

0 Answers   TCS,


what is data structure

5 Answers   Maveric, TCS,


How can I invoke another program or command and trap its output?

0 Answers  


What is modeling?

0 Answers  


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


What is structure padding and packing in c?

0 Answers  


Categories