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 / sagar naik
#include<stdio.h>
void main()
{
if(printf("hello world"))
}
Is This Answer Correct ? | 43 Yes | 25 No |
Post New Answer View All Answers
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What is a shell structure examples?
Explain union. What are its advantages?
What is 1f in c?
What is hashing in c language?
Why does the call char scanf work?
Why flag is used in c?
How do we declare variables in c?
How do you generate random numbers in C?
Why do we use header files in c?
What are the __date__ and __time__ preprocessor commands?
How do you define CONSTANT in C?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
How can I read/write structures from/to data files?