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
What are the different types of endless loops?
What is meant by operator precedence?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Write a program to implement queue.
What is string concatenation in c?
How can I change the size of the dynamically allocated array?
What are the string functions? List some string functions available in c.
What does int main () mean?
What is wrong in this statement?
Why c language is called c?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
Why are all header files not declared in every c program?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What are structures and unions? State differencves between them.
When would you use a pointer to a function?