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
how to make a scientific calculater ?
How many header files are in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
what type of questions arrive in interview over c programming?
What is the use of #include in c?
what is a constant pointer in C
What is a far pointer in c?
Write a Program to find whether the given number or string is palindrome.
What is difference between function overloading and operator overloading?
What is mean by data types in c?
What are linker error?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is the deal on sprintf_s return value?