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?
Answers were Sorted based on User's Feedback
Answer / ramesh
#include<stdio.h>
main()
{
if(printf("Hello world"))
getch();
return;
}
| Is This Answer Correct ? | 2 Yes | 18 No |
Answer / yash
hi yash
#include<stdio.h>
int main()
{
while(printf("hello")){}
}
| Is This Answer Correct ? | 33 Yes | 53 No |
Answer / cpd
53.another possible answer
count=0;
num; //32 bit integer
hex =0x01;
for(i=0;i<32;hex<<1,i++)
if(hex&num)
count++;
| Is This Answer Correct ? | 7 Yes | 53 No |
Answer / murali krishna
52.#include<stdio.h>
int main()
{
for(printf("hello world");;)
{
}
return(0);
}
| Is This Answer Correct ? | 11 Yes | 61 No |
Answer / sanjay
write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
int main()
{
while(!(printf("%s \n","hello world!!!")));
{
}
return(0);
}
| Is This Answer Correct ? | 22 Yes | 92 No |
What is the main differences between C and Embedded C?
How is a null pointer different from a dangling pointer?
What is the use of keyword VOLATILE in C?
Write the Program to reverse a string using pointers.
what are the uses of structure?
How to print "Hi World" without using semi colon?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
How do you use a pointer to a function?
What is the difference between procedural and declarative language?
What is sizeof array?
Differentiate between static and dynamic modeling.