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 / deepak kumar
#include<stdio.h>
main()
{
while(printf("hello world"))
{
}
return(0);
}
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is pass by reference in functions?
What is scope of variable in c?
Why is it important to memset a variable, immediately after allocating memory to it ?
Is c easy to learn?
What is c standard library?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What are reserved words?
Explain About fork()?
write a program in c language to print your bio-data on the screen by using functions.
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is %d used for?
how do you execute a c program in unix.
What is the process to generate random numbers in c programming language?
What are conditional operators in C?
What is switch in c?