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 / jareesh
//answer for 53
#include "stdafx.h"
void _tmain(int argc, _TCHAR* argv[])
{
if (printf("hi")){}
}
//I tested in win32 console program, worked perfect.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Can you return null in c?
What’s a signal? Explain what do I use signals for?
What is the advantage of an array over individual variables?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is n in c?
In a header file whether functions are declared or defined?
Explain the meaning of keyword 'extern' in a function declaration.
What is a macro?
Explain the use of #pragma exit?
how to write a c program to print list of fruits in alpabetical order?
What does return 1 means in c?
What is merge sort in c?
What is the use of a ‘ ’ character?
What are global variables and how do you declare them?
explain what are pointers?