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 / rajat sharan
#include<stdio.h>
main()
{
if (printf(hello world))
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain how to reverse singly link list.
Explain what are the __date__ and __time__ preprocessor commands?
What is the difference between typedef struct and struct?
write a program for the normal snake games find in most of the mobiles.
Is c still used?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What is bss in c?
What is ctrl c called?
When should structures be passed by values or by references?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What is the use of the function in c?
What is the c value paradox and how is it explained?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Explain how do you use a pointer to a function?