how to write hello word without using semicolon at the end?
Answer Posted / rajveer singh rana
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hello world"))
getch();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What do you mean by a sequential access file?
Explain what is #line used for?
Are pointers integer?
What is the difference between memcpy and memmove?
Is a house a shell structure?
What is the c language function prototype?
Write a program to check whether a number is prime or not using c?
I have seen function declarations that look like this
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Do you know the use of 'auto' keyword?
When a c file is executed there are many files that are automatically opened what are they files?
Why do we use & in c?
What is getch c?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is the difference between int main and void main in c?