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
What is an auto variable in c?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What are header files why are they important?
Can we use visual studio for c?
Which header file is essential for using strcmp function?
What is meant by type specifiers?
Differentiate fundamental data types and derived data types in C.
How many types of functions are there in c?
Where are some collections of useful code fragments and examples?
Explain union.
How does pointer work in c?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is a class c rental property?
Differentiate between a for loop and a while loop? What are it uses?
What is else if ladder?