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
write a program fibonacci series and palindrome program in c
Difference between linking and loading?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What do you understand by friend-functions? How are they used?
What is d scanf?
Why doesnt that code work?
What is the use of typedef in structure in c?
What are linked lists in c?
What is header file in c?
What is external variable in c?
What are Macros? What are its advantages and disadvantages?
What is an auto variable in c?
Do pointers take up memory?
Explain the difference between #include "..." And #include <...> In c?
What is restrict keyword in c?