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 / yash
hi yash
#include<stdio.h>
int main()
{
while(printf("hello")){}
}
| Is This Answer Correct ? | 33 Yes | 53 No |
Post New Answer View All Answers
Can true be a variable name in c?
How to write c functions that modify head pointer of a linked list?
How is a pointer variable declared?
What does volatile do?
What are the storage classes in C?
Explain why c is faster than c++?
Are there any problems with performing mathematical operations on different variable types?
What is string length in c?
What functions are used for dynamic memory allocation in c language?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
How we can insert comments in a c program?
Explain what is the benefit of using enum to declare a constant?
What does 1f stand for?
What is c language used for?
What happens if you free a pointer twice?