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 program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
Write a small C program to determine whether a machine's type is little-endian or big-endian.
Please list all the unary and binary operators in C.
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
Explain why c is faster than c++?
What is wrong with this program statement? void = 10;
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
list the no of files created when c source file is compiled
What's the difference between calloc() and malloc()?
What will be the outcome of the following conditional statement if the value of variable s is 10?
How can I open a file so that other programs can update it at the same time?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....