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 |
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
How many identifiers are there in c?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
why we need function pointers?
what is dangling pointer?
Explain 'far' and 'near' pointers in c.
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What is the difference between arrays and pointers?
when to use : in c program?
If input is 123 then how to print 100 and 20 and 3 seperately?