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 / ss

#include<stdio.h>
void main(){
if(printf("Hello World"))
{

}
}

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are different storage class specifiers in c?

886


What is the size of a union variable?

816


What is pointer to pointer in c with example?

767


what is the structure pointer?

1880


What does char * * argv mean in c?

836


What is the symbol indicated the c-preprocessor?

965


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1551


What are the basic data types associated with c?

1059


What is #include stdio h?

925


What is the difference between void main and main in c?

888


Explain how does flowchart help in writing a program?

895


What is the difference between volatile and const volatile?

766


How can I find the modification date and time of a file?

844


how to introdu5ce my self in serco

1753


What is the use of a semicolon (;) at the end of every program statement?

1170