write a program that will print %d in the output screen??
Answer Posted / mahendra vishwakarma
#include<stdio.h>
void main()
{
printf("%%d"); //this will print as %d output.
}
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is dangling pointer in c?
What is huge pointer in c?
What is array of structure in c?
How can I manipulate strings of multibyte characters?
How does placing some code lines between the comment symbol help in debugging the code?
Why is c still so popular?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Why doesnt that code work?
What is the difference between āgā and āgā in C?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What are Macros? What are its advantages and disadvantages?
What is scope and lifetime of a variable in c?
Why can't I perform arithmetic on a void* pointer?
Why is c platform dependent?