write a program that will print %d in the output screen??
Answer Posted / vignesh1988i
void main()
{
printf("%%d");
getch();
}
where %% will print % and d will be printed asual
thank u
| Is This Answer Correct ? | 39 Yes | 2 No |
Post New Answer View All Answers
Explain a pre-processor and its advantages.
What is adt in c programming?
How was c created?
What is the hardest programming language?
What is the value of h?
What is difference between array and structure in c?
What is bubble sort technique in c?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
What is meant by preprocessor in c?
When is the “void” keyword used in a function?
Is null always equal to 0(zero)?
Is stack a keyword in c?
What is the difference between mpi and openmp?
How is pointer initialized in c?
Is struct oop?