52.write a “Hello World” program in “c” without using a
semicolon?
53.Give a method to count the number of ones in a 32 bit number?
54.write a program that print itself even if the source file
is deleted?
55.Given an unsigned integer, find if the number is power of 2?
Answer Posted / v.srinivasan
write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
main()
{
if(printf("Hello World \n"))
{
}
}
This will work perfectly.
| Is This Answer Correct ? | 315 Yes | 44 No |
Post New Answer View All Answers
When is the “void” keyword used in a function?
Can we access the array using a pointer in c language?
What are the primitive data types in c?
Explain what is dynamic data structure?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is an lvalue in c?
difference between object file and executable file
What is #define used for in c?
What’s the special use of UNIONS?
What is adt in c programming?
How do you convert strings to numbers in C?
What does node * mean?
What type of function is main ()?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is const keyword in c?