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
What is sizeof in c?
Who invented b language?
Explain how can a program be made to print the name of a source file where an error occurs?
Which is best book for data structures in c?
What is malloc return c?
What is sizeof int in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
what is a function method?give example?
Can we use visual studio for c?
What is the deal on sprintf_s return value?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What are the disadvantages of external storage class?
Write a progarm to find the length of string using switch case?
What is an auto keyword in c?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.