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



52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to cou..

Answer / ramesh

#include<stdio.h>
main()
{
if(printf("Hello world"))
getch();
return;
}

Is This Answer Correct ?    2 Yes 18 No

52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to cou..

Answer / yash

hi yash
#include<stdio.h>
int main()
{
while(printf("hello")){}
}

Is This Answer Correct ?    33 Yes 53 No

52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to cou..

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

52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to cou..

Answer / murali krishna

52.#include<stdio.h>
int main()
{
for(printf("hello world");;)
{
}
return(0);
}

Is This Answer Correct ?    11 Yes 61 No

52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to cou..

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

Post New Answer

More C Interview Questions

How does normalization of huge pointer works?

0 Answers  


what is void pointer?

1 Answers   Wipro,


What is diffrance between declaration and defination of a variable or function

4 Answers  


What are the advantage of c language?

0 Answers  


What is the general form of a C program?

0 Answers  






What is assert and when would I use it?

0 Answers  


What is the difference between procedural and functional programming?

0 Answers  


If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

0 Answers  


Explain the use of #pragma exit?

0 Answers  


How pointer is different from array?

0 Answers  


prototype of sine function.

2 Answers   Cadence,


Does sprintf put null character?

0 Answers  


Categories