Answer Posted / ajithbalaji
Both r wrong
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\"hello\"");
getch();
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Is there any data type in c with variable size?
about c language
Tell me what are bitwise shift operators?
Define C in your own Language.
int far *near * p; means
What is the use of gets and puts?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Explain about C function prototype?
What does the file stdio.h contain?
C program to find all possible outcomes of a dice?
How can you be sure that a program follows the ANSI C standard?
What is meant by initialization and how we initialize a variable?
Is int a keyword in c?
What is malloc return c?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.