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 |
Write a C program to fill a rectangle using window scrolling
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
There seem to be a few missing operators ..
Explain the array representation of a binary tree in C.
Explain how do you use a pointer to a function?
what are the difference between ANSI C and Let Us c and Turbo C
how to introdu5ce my self in serco
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
who is first prime minister in india??
What is data structure in c programming?