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

#include<stdio.h>
int main()
{
if(printf("Madhu"))
{
}
}

Is This Answer Correct ?    0 Yes 0 No

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

Answer / shariq khan

#include<stdio.h>
#define A;
void main()
{
printf("shariq khan")A
}

Is This Answer Correct ?    0 Yes 0 No

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

Answer / sri lakshmi

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

Is This Answer Correct ?    0 Yes 0 No

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

Answer / annie

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

Is This Answer Correct ?    2 Yes 3 No

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

Answer / baba kancha

#include<stdio.h>
int main( )
{ if(printf("baba")
{
}
}

Is This Answer Correct ?    1 Yes 2 No

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

Answer / g.rajitha

#include<iostream.h>
void main()
{
if(cout<<RAJITHA){}
}

Is This Answer Correct ?    0 Yes 1 No

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

Answer / ravi pandey

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

Is This Answer Correct ?    9 Yes 15 No

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

Answer / shubhankar sisodia

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

Is This Answer Correct ?    10 Yes 17 No

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

Answer / gprabha

#include<stdio.h>
void main()
{
int i=1;
if(printf("Prabha"))
{
i++;
}
getch();
}

Is This Answer Correct ?    7 Yes 16 No

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

Answer / revathi pawar

#include<stdio.h>
{
int i;
if(printf("bill gates"))
i=1;
}

Is This Answer Correct ?    20 Yes 47 No

Post New Answer

More C Interview Questions

What is the difference between #include <header file> and #include “header file”?

0 Answers  


What is the purpose of type declarations?

0 Answers  


What is volatile

2 Answers  


why program counter is 16 bit?

3 Answers  


WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?

1 Answers  






Is c functional or procedural?

1 Answers  


When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these

1 Answers   Accenture, IBM,


Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.

2 Answers   Infosys,


can you change name of main()?how?

3 Answers   HCL, Siemens,


In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none

0 Answers  


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

0 Answers  


how to swap 4 number without using temporary number?

2 Answers  


Categories