write a program to print %d ?
Answers were Sorted based on User's Feedback
Answer / chinna
#include<stdio.h>
#include<conio.h>
void main()
{
printf("%d");
}
| Is This Answer Correct ? | 15 Yes | 10 No |
Answer / satish
#include<stdio.h>
main(){
printf("%cd",37);// ASCII value of % = 37
}
| Is This Answer Correct ? | 14 Yes | 9 No |
Answer / agalya
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\%d");
}
| Is This Answer Correct ? | 13 Yes | 10 No |
Answer / manikanta
#include "stdio.h"
main()
{
printf(" %%d ");
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / hareram ray
#include<stdio.h>
int main(int argc,char *argv)
{
clrscr();
printf("%d");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / murali
#include<stdio.h>
#include<conio.h>
void main()
{
printf("%");
printf("d");
}
| Is This Answer Correct ? | 9 Yes | 10 No |
Why do we use static in c?
how to do in place reversal of a linked list(singly or doubly)?
c program for searching a student details among 10 student details
which header file contains main() function in c?
17 Answers Google, HCL, TCS,
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
difference between semaphores and mutex?
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
Is it possible to create recycle bin in mobiles?
How many data structures are there in c?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
What happens if you free a pointer twice?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,