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
Which one would you prefer - a macro or a function?
How do you determine whether to use a stream function or a low-level function?
What is the explanation for prototype function in c?
Write a program to generate the Fibinocci Series
What are types of preprocessor in c?
Can we use visual studio for c?
what is the format specifier for printing a pointer value?
Explain what is the advantage of a random access file?
Write a program to reverse a linked list in c.
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Explain what are its uses in c programming?
What is a void * in c?
How do we print only part of a string in c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?