Answer Posted / maskfriend
#include<stdio.h>
#include<conio.h>
void main()
{
printf("hai");
getch();
}
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
What is the difference between constant pointer and constant variable?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is the difference between call by value and call by reference in c?
Write a program to print ASCII code for a given digit.
Write a program to print "hello world" without using a semicolon?
Where are some collections of useful code fragments and examples?
What are the uses of a pointer?
When should the register modifier be used? Does it really help?
How are strings stored in c?
What is "Hungarian Notation"?
How can I find the modification date and time of a file?
What are the 32 keywords in c?
Explain what does the format %10.2 mean when included in a printf statement?
What is a good way to implement complex numbers in c?
List the difference between a While & Do While loops?