Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

how to print 212 as Twohundreds twelve plz provide me ans soon

1 Answers  


Why flag is used in c?

0 Answers  


List some of the static data structures in C?

0 Answers  


any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above

0 Answers  


Write a C program linear.c that creates a sequence of processes with a given length. By sequence it is meant that each created process has exactly one child. Let's look at some example outputs for the program. Here the entire process sequence consists of process 18181: Sara@dell:~/OSSS$ ./linear 1 Creating process sequence of length 1. 18181 begins the sequence. An example for a sequence of length three: Sara@dell:~/OSSS$ ./linear 3 Creating process sequence of length 3. 18233 begins the sequence. 18234 is child of 18233 18235 is child of 18234 ........ this is coad .... BUt i could not compleate it .....:( #include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <stdlib.h> int main(int argc, char *argv[]) { int N; pid_t pid; int cont; if (argc != 2) { printf("Wrong number of command-line parameters!\n"); return 1; } N = atoi(argv[1]); printf("Creating process sequence of length %d.\n",N); printf("%d begins the sequence.\n",getpid()); /* What I have to do next ?????? */ }

0 Answers  


What is an expression?

0 Answers  


Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...

4 Answers   TCS,


du u know test pattern for robosoft? Plz share

1 Answers   RoboSoft, TATA, Wipro,


Why we use stdio h in c?

0 Answers  


Is there any book to know about Basics of C Language?

4 Answers  


What is array in c with example?

0 Answers  


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

0 Answers   Wilco,


Categories