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 / neeraj
switch(printf("Hello World"..!!!))
{
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
When was c language developed?
List some of the static data structures in C?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Can static variables be declared in a header file?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Explain the difference between the local variable and global variable in c?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Why is C language being considered a middle level language?
Write a program to know whether the input number is an armstrong number.
Explain the priority queues?
What is .obj file in c?
What is variable in c example?
Can a pointer be volatile in c?
What is the correct code to have following output in c using nested for loop?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?