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 / ss
#include<stdio.h>
void main(){
if(printf("Hello World"))
{
}
}
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Why & is used in scanf in c?
What do you mean by c what are the main characteristics of c language?
How was c created?
How does sizeof know array size?
Explain the meaning of keyword 'extern' in a function declaration.
Explain the concept and use of type void.
How can I remove the trailing spaces from a string?
What is #include stdio h and #include conio h?
Explain the use of 'auto' keyword in c programming?
Explain what is the benefit of using an enum rather than a #define constant?
Can you apply link and association interchangeably?
What are register variables? What are the advantage of using register variables?
What is a nested loop?
How variables are declared in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }