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
Is it possible to have a function as a parameter in another function?
Where static variables are stored in c?
What is the difference between strcpy() and memcpy() function in c programming?
What is #line used for?
can we have joblib in a proc ?
what is the function of pragma directive in c?
Add Two Numbers Without Using the Addition Operator
What is the difference between malloc() and calloc() function in c language?
what are the different storage classes in c?
What is indirection?
What do you mean by c what are the main characteristics of c language?
What is the explanation for cyclic nature of data types in c?
How can you increase the size of a statically allocated array?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Can a pointer be static?