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


Please Help Members By Posting Answers For Below Questions

What is the function of multilevel pointer in c?

872


Define macros.

1056


what is a NULL Pointer? Whether it is same as an uninitialized pointer?

1058


Explain what is the difference between functions getch() and getche()?

820


How is a null pointer different from a dangling pointer?

818


What are the ways to a null pointer can use in c programming language?

909


what are the advantages of a macro over a function?

917


What is c programming structure?

853


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

990


What is bubble sort technique in c?

793


What are the various types of control structures in programming?

841


What is multidimensional arrays

890


Which is the best website to learn c programming?

850


Difference between strcpy() and memcpy() function?

894


write a programming in c to find the sum of all elements in an array through function.

1944