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 / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

821


All technical questions

1522


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

1643


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

2690


Which is more efficient, a switch statement or an if else chain?

589






Differentiate between functions getch() and getche().

631


Define C in your own Language.

650


Why we not create function inside function.

1761


Explain what is wrong with this program statement? Void = 10;

774


How do you write a program which produces its own source code as output?

620


What does main () mean in c?

632


What is the use of function in c?

720


Why does this code crash?

629


What is main () in c language?

609


What is bin sh c?

589