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...

write a program that will print %d in the output screen??

Answer Posted / aditya singh

//wap to print %d on the screen//
#include<stdio.h>
main()
{
char a = '%';
char b = 'd';
printf("%c",a);
printf("%c",b);
getch();
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I read a binary data file properly?

1089


What is the difference between int main and void main in c?

1096


How do you write a program which produces its own source code as output?

1063


how can use subset in c program and give more example

1933


What is bss in c?

1047


How will you delete a node in DLL?

1222


What is 1f in c?

2572


What is a newline escape sequence?

1060


what will be the output for the following main() { printf("hi" "hello"); }

10803


Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

4154


What is a program flowchart and explain how does it help in writing a program?

1230


How do you define structure?

996


Why should I prototype a function?

1122


Function calling procedures? and their differences? Why should one go for Call by Reference?

1044


What is default value of global variable in c?

941