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 / chandan
52.write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
void main()
{
if(printf("Hello world"))
{}
//if(!(printf("Hello world"))) {} it will also work.
//while(!(printf("Hello world"))) {} it will also work.
}
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Is c weakly typed?
What is the function of multilevel pointer in c?
Write a program to print factorial of given number without using recursion?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
How many types of errors are there in c language? Explain
Write a program to implement queue.
What does it mean when the linker says that _end is undefined?
What is putchar() function?
What is memory leak in c?
Why do we use return in c?
What is an operator?
What is a static function in c?
What is 'bus error'?
What do the functions atoi(), itoa() and gcvt() do?
Explain how can you tell whether two strings are the same?