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 a constant?
Method Overloading exist in c ?
What are pointers really good for, anyway?
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
Is it possible to create recycle bin in mobiles?
What is this pointer in c plus plus?
Explain #pragma in C.
Why is c still so popular?
What is the use of define in c?
WHAT IS LOW LEVEL LANGUAGE?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
Explain b+ tree?