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 / saurabh kumar singh
#inlclude<stdio.h>
void main()
{
while(printf("hello word\n"))
{
}
}
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Can you tell me how to check whether a linked list is circular?
How will you write a code for accessing the length of an array without assigning it to another variable?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How do you sort filenames in a directory?
what do you mean by enumeration constant?
What are global variables and explain how do you declare them?
Why does the call char scanf work?
What are static variables in c?
What are register variables in c?
diff between exptected result and requirement?
What is difference between array and structure in c?
List a few unconditional control statement in c.
largest Of three Number using without if condition?
Explain the meaning of keyword 'extern' in a function declaration.
Is it possible to use curly brackets ({}) to enclose single line code in c program?