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 / ramesh
#include<stdio.h>
main()
{
if(printf("Hello world"))
getch();
return;
}
| Is This Answer Correct ? | 2 Yes | 18 No |
Post New Answer View All Answers
What are variables and it what way is it different from constants?
Explain how do you sort filenames in a directory?
What is the difference between test design and test case design?
What is the stack in c?
When is a void pointer used?
What is function what are the types of function?
what do the 'c' and 'v' in argc and argv stand for?
What's the best way of making my program efficient?
What are the 3 types of structures?
What is the full form of getch?
What are the storage classes in C?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is meant by recursion?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is the difference between int main and void main in c?