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?
Answers were Sorted based on User's Feedback
Answer / v.srinivasan
write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
main()
{
if(printf("Hello World \n"))
{
}
}
This will work perfectly.
| Is This Answer Correct ? | 315 Yes | 44 No |
Answer / devarathnam .c, s.v.university
Hi Sujatha,
Program for your question no.52.
#include<stdio.h>
main()
{
if(Printf("Hello World!!!"))
}
Here I didn't use semicolon, I hope I met your criteria.
| Is This Answer Correct ? | 267 Yes | 137 No |
Answer / sagar naik
#include<stdio.h>
void main()
{
if(printf("hello world"))
}
| Is This Answer Correct ? | 43 Yes | 25 No |
Answer / saurabh
#include<stdio.h>
main()
{
while(printf("Hello World \n"))
{
}
}
| Is This Answer Correct ? | 40 Yes | 25 No |
Answer / vikky_manit
#inlcude<stdio.h>
void main()
{
if(printf("Hello world"))
{
}
}
| Is This Answer Correct ? | 16 Yes | 9 No |
Answer / surekha
#include<stdio.h>
#include<conio.h>
void main()
{
while(!printf("Hell, this is aptech"))
{
}
}
/*after compilation and execution,press alt+f5 to see the
result */
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / siva jyothi
53:
#include<stdio.h>
main()
{
unsigned int num;
int i=0;
while(num!=0)
{
if(num&1 == 1)
{
i++;
}
num>>=1;
}
printf("number of 1's is:%d\n",i);
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / saurabh kumar singh
#inlclude<stdio.h>
void main()
{
while(printf("hello word\n"))
{
}
}
| Is This Answer Correct ? | 6 Yes | 4 No |
Answer / chandan
52.write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
void main()
{
if(printf("Hello world"))
{}
//if(!(printf("Hello world"))) {} it will also work.
//while(!(printf("Hello world"))) {} it will also work.
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Why is not a pointer null after calling free?
What is sparse file?
What does & mean in scanf?
application of static variables in real time
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
Dear Sir, we are required the bubble sorting programs Regs Prem
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
List the variables are used for writing doubly linked list program.
Where local variables are stored in c?