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
What is #line in c?
What is external variable in c?
Explain what are linked list?
Explain the ternary tree?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
In C language what is a 'dangling pointer'?
Can a variable be both static and volatile in c?
What does p mean in physics?
How does sizeof know array size?
What is sizeof array?
Write a code of a general series where the next element is the sum of last k terms.
What is 1f in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Did c have any year 2000 problems?
What is a good way to implement complex numbers in c?