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 / anshukumarsrivastava.
a program to print a string i am in allahabad without using
a semicolon.
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf(" i am in allahabad"))
getch();
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
Can you please compare array with pointer?
What is meant by errors and debugging?
Explain what are the different file extensions involved when programming in c?
What does do in c?
What is indirection?
What is the use of extern in c?
What is c language & why it is used?
What is the modulus operator?
When should a far pointer be used?
Explain what does the format %10.2 mean when included in a printf statement?
What is file in c language?
What are reserved words with a programming language?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is extern variable in c with example?
Once I have used freopen, how can I get the original stdout (or stdin) back?