how can we print hellow world programme without using semicolon
Answers were Sorted based on User's Feedback
Answer / akbar
#include<stdio.h>
int main()
{
printf("Hello World
");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rohit kakade
#include<stdio.h>
#include<conio.h>
void main(void)
{
while(printf("HellO")==0)
getch();
}
| Is This Answer Correct ? | 1 Yes | 4 No |
What is the meaning of typedef struct in c?
How will you allocate memory to a double pointer ?
How can you tell whether a program was compiled using c versus c++?
What is variables in c?
Are negative numbers true in c?
Dont ansi function prototypes render lint obsolete?
wat are the two methods for swapping two numbers without using temp variable??
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
What extern c means?
What is the use of clrscr?
What is a pointer in c?
What is difference between main and void main?