#include<>stdio.h>
#include<>conio.h>
{
printf("hello");
void main()
getch();
} what the out put of this program and why ......plz clear
my answer
Answers were Sorted based on User's Feedback
Answer / sambath
answer is =" Unable to open the header files and must be
open brash come after main program "
Is This Answer Correct ? | 18 Yes | 5 No |
Answer / meg&
#include<stdio.h>
#include<conio.h>
voidn main
{
clrscr();
printf("Try this one");
getch();
}
Is This Answer Correct ? | 9 Yes | 4 No |
Answer / naina
#include<stdio.h>
#include<conio.h>
void main()
{
printf("any message to display on console");
getch();
}
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / lalithpriya
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("Hello!");
getch();
}
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / sansiri
the output is not display for this program because unable to
open header files due to the syntax is error and after the
main function only the braces are opened
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / dhatchina moorthy
actually this program will be showing error
the correct one may be following:
#include<>stdio.h>
#include<>conio.h>
void main()
{
printf("hello");
getch();
}
Is This Answer Correct ? | 5 Yes | 7 No |
Answer / geetha.s.b
answer is =" Unable to open the header files and must be
open brash come after main program "
Is This Answer Correct ? | 0 Yes | 5 No |
Answer / shreyas
#include<stdio.h>
#include<conio.h>
{
printf("hello");
void main()
getch();
}
if this is the case....then it will return an error that
braces '{' are not at the right place
Is This Answer Correct ? | 4 Yes | 10 No |
Answer / parvathy mohan
#include<>stdio.h>
#include<>conio.h>
void main()
{
printf("hello");
scanf("%d",&hello);
getch();
}
Is This Answer Correct ? | 0 Yes | 6 No |
char* f() return "hello:"; void main() {char *str=f(); }
what is syntax error?
WHAT WILL BE THE OUTPUT OF THE FOLLOWING QUESTION void main() { int x=4,y=3,z; z=x-- -y; printf("%d%d%d",x,y,z); }
How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)
which typw of errors ? & how to solve it ?
void main() { int i=1; printf("%d%d%d",i,++i,i++); } Cau u say the output....?
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
full c programming error question based problem
what is exceptions?
quoroum of computer languages?
what is meant for variable not found?
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).