write a program that will print %d in the output screen??
Answer Posted / furquan
int main()
{
printf("%%d");
return 0;
}
Is This Answer Correct ? | 96 Yes | 7 No |
Post New Answer View All Answers
When should the const modifier be used?
What are the header files used in c language?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
What is 'bus error'?
What is meant by gets in c?
In C language, a variable name cannot contain?
What are the types of assignment statements?
What are global variables and explain how do you declare them?
what is the structure pointer?
What is pointer to pointer in c with example?
Does free set pointer to null?
What is spaghetti programming?
What is the g value paradox?
I need a sort of an approximate strcmp routine?
What does malloc () calloc () realloc () free () do?