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

What is scope rule of function in c?

554


pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

2204


What is the difference between fread and fwrite function?

642


How can I do graphics in c?

597


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1664






main() { printf("hello"); fork(); }

699


In C, What is the #line used for?

1068


How important is structure in life?

595


Why doesnt this code work?

620


using for loop sum 2 number of any 4 digit number in c language

1738


What is the difference between new and malloc functions?

582


What do you mean by invalid pointer arithmetic?

637


What are the properties of union in c?

592


What is a built-in function in C?

799


Can we access the array using a pointer in c language?

565