write a “Hello World” program in “c” without using a semicolon?
Answer Posted / mahesh
#include<stdio.h>
void main()
{
if(printf("Hello World"))
{
}
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Explain the Difference between the New and Malloc keyword.
What language is lisp written in?
Is c still relevant?
What is an auto variable in c?
Explain two-dimensional array.
What is the difference between #include
Explain how can I write functions that take a variable number of arguments?
How can I manipulate strings of multibyte characters?
Explain what does it mean when a pointer is used in an if statement?
Describe the header file and its usage in c programming?
What does d mean?
explain what are pointers?
Define Array of pointers.
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How can I run c program?