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 / sankar kiran

#include<stdio.h>
#include<conio.h>
void main()
{
while(printf("Hello World"))
{
break;
}
getch();

}

Is This Answer Correct ?    6 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Mention four important string handling functions in c languages .

617


How can a program be made to print the line number where an error occurs?

642


What is a loop?

548


How do you define a function?

579


Can the curly brackets { } be used to enclose a single line of code?

709






How can I do graphics in c?

586


What Is The Difference Between Null And Void Pointer?

636


What is actual argument?

585


What is oops c?

602


What is bss in c?

596


How do you list files in a directory?

558


Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"

1579


What are the different types of control structures in programming?

654


Explain what are the different data types in c?

747


Differentiate abs() function from fabs() function.

588