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 / saurabh
#include<stdio.h>
main()
{
while(printf("Hello World \n"))
{
}
}
Is This Answer Correct ? | 40 Yes | 25 No |
Post New Answer View All Answers
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is .obj file in c?
What does *p++ do? What does it point to?
How do I round numbers?
Explain what is the benefit of using #define to declare a constant?
What are global variables and explain how do you declare them?
What are nested functions in c?
write a program to rearrange the array such way that all even elements should come first and next come odd
What is the difference between %d and %i?
What is a pointer variable in c language?
What is the difference between int main and void main in c?
What is the function of multilevel pointer in c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What are the 5 elements of structure?
What are formal parameters?