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 / murali krishna

52.#include<stdio.h>
int main()
{
for(printf("hello world");;)
{
}
return(0);
}

Is This Answer Correct ?    11 Yes 61 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When should a far pointer be used?

607


What is the use of header files?

610


What is c language and why we use it?

626


Describe how arrays can be passed to a user defined function

788


Can we replace the struct function in tree syntax with a union?

786






What is wrong in this statement? scanf(“%d”,whatnumber);

731


Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.

609


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

827


Write a program to print numbers from 1 to 100 without using loop in c?

644


Why are all header files not declared in every c program?

605


What is cohesion and coupling in c?

597


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2004


What is %d called in c?

763


How to delete a node from linked list w/o using collectons?

2093


Can you write a programmer for FACTORIAL using recursion?

618