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 / sankar kiran
#include<stdio.h>
#include<conio.h>
void main()
{
while(printf("Hello World"))
{
break;
}
getch();
}
Is This Answer Correct ? | 6 Yes | 8 No |
Post New Answer View All Answers
swap 2 numbers without using third variable?
What is %g in c?
What is string constants?
What is the process of writing the null pointer?
Explain main function in c?
What do you mean by a sequential access file?
Explain what are global variables and explain how do you declare them?
What is equivalent to ++i+++j?
What is the importance of c in your views?
Why string is used in c?
Is c easy to learn?
Explain the process of converting a Tree into a Binary Tree.
What is %s and %d in c?
Explain how can a program be made to print the line number where an error occurs?
Explain function?