how to write hello word without using semicolon at the end?
Answer Posted / ramu gurram
#include<stdio.h>
int main(void)
{
if(printf("hello world"));
return 0;
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
How do you override a defined macro?
What is a global variable in c?
Do you have any idea about the use of "auto" keyword?
When should volatile modifier be used?
What are pointers? What are different types of pointers?
What is a stream?
Difference between pass by reference and pass by value?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
What are conditional operators in C?
What are the 4 types of programming language?
Is linux written in c?
How do you search data in a data file using random access method?
Can we add pointers together?
What is structure and union in c?