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 / murali krishna
52.#include<stdio.h>
int main()
{
for(printf("hello world");;)
{
}
return(0);
}
| Is This Answer Correct ? | 11 Yes | 61 No |
Post New Answer View All Answers
What is gets() function?
What is huge pointer in c?
What is the sizeof () operator?
What is the size of empty structure in c?
Who is the founder of c language?
Mention four important string handling functions in c languages .
Where we use clrscr in c?
Where is volatile variable stored?
Describe wild pointers in c?
I need testPalindrome and removeSpace
#include
Why static variable is used in c?
Is c is a high level language?
What is an auto keyword in c?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
If errno contains a nonzero number, is there an error?