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 / ramesh
#include<stdio.h>
main()
{
if(printf("Hello world"))
getch();
return;
}
| Is This Answer Correct ? | 2 Yes | 18 No |
Post New Answer View All Answers
what is the basis for selection of arrays or pointers as data structure in a program
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is the purpose of the statement: strcat (S2, S1)?
write a program in c language to print your bio-data on the screen by using functions.
What does typedef struct mean?
What does 3 periods mean in texting?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is bubble sort technique in c?
What is the purpose of main( ) in c language?
Where are the auto variables stored?
What is the difference between class and object in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Can one function call another?
Can we change the value of #define in c?
Between macros and functions,which is better to use and why?