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
What are the types of data structures in c?
Does sprintf put null character?
Write a program to check palindrome number in c programming?
What is the best way to store flag values in a program?
Why is a semicolon (;) put at the end of every program statement?
What is abstract data structure in c?
Why enum is used in c?
What is the meaning of c in c language?
What is wrong in this statement? scanf(ā%dā,whatnumber);
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
How many types of sorting are there in c?
Explain can static variables be declared in a header file?
How do we make a global variable accessible across files? Explain the extern keyword?
How can I read/write structures from/to data files?
What is anagram in c?