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 / sanjay
write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
int main()
{
while(!(printf("%s \n","hello world!!!")));
{
}
return(0);
}
| Is This Answer Correct ? | 22 Yes | 92 No |
Post New Answer View All Answers
Tell me when is a void pointer used?
Why do we need arrays in c?
What is a file descriptor in c?
What is New modifiers?
Where are some collections of useful code fragments and examples?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is linear search?
Explain what is a const pointer?
Do you know the difference between exit() and _exit() function in c?
What is function what are the types of function?
What is the maximum no. of arguments that can be given in a command line in C.?
What are the functions to open and close file in c language?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What are structures and unions? State differencves between them.
Explain which function in c can be used to append a string to another string?