write a program to print %d ?
Answers were Sorted based on User's Feedback
Answer / naveenkumar s h
#include<stdio.h>
#include<conio.h>
void main()
{
printf(%d, printf(%d));
}
| Is This Answer Correct ? | 0 Yes | 11 No |
Answer / ketan
#include<stdio.h>
#include<conio.h>
void main()
{
printf%d
}
| Is This Answer Correct ? | 3 Yes | 22 No |
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
How can I direct output to the printer?
Is boolean a datatype in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What’s a signal? Explain what do I use signals for?
Write a program to print all permutations of a given string.
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
Write a C program that reads a series of strings and prints only those ending in "ed"
Does sprintf put null character?
What is || operator and how does it function in a program?
What is chain pointer in c?
How can I do peek and poke in c?