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 / hussain reddy

/* mypro.c*/
#include<stdio.h>
void main()
{
remove("mypro.c");
}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is calloc better than malloc?

570


What is || operator and how does it function in a program?

622


What is the difference between text files and binary files?

669


What is pointers in c with example?

573


What is dynamic variable in c?

559






write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a

1447


What is an array in c?

589


Is struct oop?

575


Why does notstrcat(string, "!");Work?

637


Is array name a pointer?

601


What is external variable in c?

606


How can you draw circles in C?

620


What are types of structure?

600


What is the best way to store flag values in a program?

576


How does normalization of huge pointer works?

624