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
What is the use of getchar() function?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
How can I read in an object file and jump to locations in it?
What is the use of bitwise operator?
Compare interpreters and compilers.
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What are the different types of C instructions?
Why c is a mother language?
What does it mean when a pointer is used in an if statement?
Explain about C function prototype?
When can a far pointer be used?
Is null always equal to 0(zero)?
How can type-insensitive macros be created?
can we have joblib in a proc ?
What is file in c preprocessor?