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

Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above

0 Answers  


Why is c fast?

0 Answers  


What is the difference between File pointer and Internal Charecter Pointer?

2 Answers   TATA,


Difference between constant pointer and pointer to a constant.

0 Answers   Huawei,


f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?

7 Answers   Geometric Software,


pierrot's divisor program using c or c++ code

0 Answers  


Why Modern OS are interrupt driven?Give an example

3 Answers  


how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

0 Answers  


write a programme that inputs a number by user and gives its multiplication table.

2 Answers  


Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.

11 Answers   Microsoft,


swap two integer variables without using a third temporary variable?

6 Answers   Persistent,


What is include directive in c?

0 Answers  


Categories