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 / surekha
#include<stdio.h>
#include<conio.h>
void main()
{
while(!printf("Hell, this is aptech"))
{
}
}
/*after compilation and execution,press alt+f5 to see the
result */
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What is 'bus error'?
What is a keyword?
How to write a code for reverse of string without using string functions?
What is difference between %d and %i in c?
Explain what are compound statements?
What is wrong in this statement?
What are the types of data files?
What are the preprocessor categories?
What is a file descriptor in c?
is it possible to create your own header files?
What language is c written?
int far *near * p; means
What does void main () mean?