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 |
Is malloc memset faster than calloc?
Write a C program to perform some of the operation which can be performed using Single linked list
what is the difference between c and java?
Explain the difference between the local variable and global variable in c?
What is the difference between declaring a variable and defining a variable?
In c language can we compile a program without main() function?
what is the role you expect in software industry?
How do you view the path?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
What is the difference between malloc() and realloc()?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
What is indirection?