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 |
Explain built-in function?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
main difference between c and c++ language
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Explain the advantages and disadvantages of macros.
What is c language in simple words?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
What is the description for syntax errors?
What is memmove?
what is differnence b/w macro & functions
When should you use a type cast?