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 / ramesh
#include<stdio.h>
main()
{
if(printf("Hello world"))
getch();
return;
}
| Is This Answer Correct ? | 2 Yes | 18 No |
Post New Answer View All Answers
What is the difference between malloc() and calloc()?
What is use of bit field?
What is the difference between call by value and call by reference in c?
What are the types of c language?
How to create struct variables?
What is a good way to implement complex numbers in c?
Explain what is a const pointer?
Should I learn c before c++?
Explain the difference between ++u and u++?
What are the types of operators in c?
What is the use of ?
Describe the modifier in c?
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 are dangling pointers in c?
What are header files and what are its uses in C programming?