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 / vikky_manit
#inlcude<stdio.h>
void main()
{
if(printf("Hello world"))
{
}
}
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What are reserved words?
What is the purpose of ftell?
How variables are declared in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Which is better malloc or calloc?
The file stdio.h, what does it contain?
Explain how to reverse singly link list.
Why n++ execute faster than n+1 ?
What are register variables? What are the advantage of using register variables?
What are the benefits of organizational structure?
How can I copy just a portion of a string?
What are file streams?
What is 02d in c?
What is a program flowchart?