#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 |
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); }
void main() { int i=5; printf("%d",i+++++i); }
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
what is meant for variable not found?
Given that two int variables, total and amount , have been declared, write a sequence of statements that: initializes total to 0 reads three values into amount , one at a time. After each value is read in to amount , it is added to the value in total (that is, total is incremented by the value in amount ). Instructor's notes: If you use a loop, it must be a for loop. And if you use a loop control variable for counting, you must declare it.
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;
what is run time error?
Given an int variable n that has been initialized to a positive value and, in addition, int variables k and total that have already been declared, use a do...while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total . Thus if n equals 4, your code should put 1*1*1 + 2*2*2 + 3*3*3 + 4*4*4 into total . Use no variables other than n , k , and total .
wap for bubble sort
who was the present cheif governor of reserve bank of india
6 Answers State Bank Of India SBI,
A sample program using data structure? what is file handling?