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

char ch="{'H','I',0};printf("%s",ch);what is output

9 Answers   Accenture,


Explain what is the advantage of a random access file?

0 Answers  


i want to job in your company, so how it will be possible.

3 Answers   TCS,


#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39

1 Answers   GameLoft,


How can I write functions that take a variable number of arguments?

0 Answers  






What is bubble sort technique in c?

0 Answers  


how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.

2 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


Is stack a keyword in c?

0 Answers  


What does a function declared as pascal do differently?

0 Answers  


how to find greatet of 10 numbers without using array?

4 Answers  


Define the scope of static variables.

0 Answers  


Categories