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 out of string in this format;
1. "rajesh"
2. \n
3. %d

Answer Posted / helen sobia

#include<stdio.h>
void main()
{clrscr();
char ch='d';
pritf("1.\t"rajesh"\n");
printf("2.\t\\n\n");
printf("3.\t%%s",ch);
getch();
}

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How #define works?

1063


What is data types?

1043


Can you please explain the difference between exit() and _exit() function?

1003


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

1042


write a c program to find the sum of five entered numbers using an array named number

2092


What is the modulus operator?

1169


Explain what is wrong with this program statement? Void = 10;

1211


Describe dynamic data structure in c programming language?

1057


Can a local variable be volatile in c?

968


What is null pointer in c?

960


Write the test cases for checking a variable having value in range -10.0 to +10.0?

2284


What are multidimensional arrays?

1085


What is c basic?

1144


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

1086


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

1105