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
What are different storage class specifiers in c?
What is the size of a union variable?
What is pointer to pointer in c with example?
what is the structure pointer?
What does char * * argv mean in c?
What is the symbol indicated the c-preprocessor?
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.
What are the basic data types associated with c?
What is #include stdio h?
What is the difference between void main and main in c?
Explain how does flowchart help in writing a program?
What is the difference between volatile and const volatile?
How can I find the modification date and time of a file?
how to introdu5ce my self in serco
What is the use of a semicolon (;) at the end of every program statement?