how can we print hellow world programme without using semicolon
Answer Posted / rohit kakade
#include<stdio.h>
#include<conio.h>
void main(void)
{
while(printf("HellO")==0)
getch();
}
Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is the function of multilevel pointer in c?
Define macros.
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Explain what is the difference between functions getch() and getche()?
How is a null pointer different from a dangling pointer?
What are the ways to a null pointer can use in c programming language?
what are the advantages of a macro over a function?
What is c programming structure?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is bubble sort technique in c?
What are the various types of control structures in programming?
What is multidimensional arrays
Which is the best website to learn c programming?
Difference between strcpy() and memcpy() function?
write a programming in c to find the sum of all elements in an array through function.