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 pointers in c?
How do I send escape sequences to control a terminal or other device?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is the use of function overloading in C?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is data structure in c and its types?
What is the use of clrscr?
Explain how do you determine a file’s attributes?
What are lookup tables in c?
Tell me is null always defined as 0(zero)?
What is the use of a static variable in c?
What is time complexity c?
How can I read a binary data file properly?
Explain is it valid to address one element beyond the end of an array?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples