Answer Posted / rahul
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i=5;
printf("%d",i);
getch();
}
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What do you know about the use of bit field?
Is it possible to have a function as a parameter in another function?
differentiate built-in functions and user – defined functions.
Explain how can you avoid including a header more than once?
What is the difference between printf and scanf in c?
How can you increase the allowable number of simultaneously open files?
What is a pointer and how it is initialized?
What is the deal on sprintf_s return value?
How can type-insensitive macros be created?
Can you write the algorithm for Queue?
What are the benefits of organizational structure?
Why c is called a mid level programming language?
How pointer is different from array?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is ctrl c called?