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 / rajeev
#include<stdio.h>
main()
{
if(printf("Hello world \n"))
{
}
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the best organizational structure?
a program that can input number of records and can view it again the record
How to write a code for reverse of string without using string functions?
What are volatile variables in c?
Explain how many levels deep can include files be nested?
What is a good data structure to use for storing lines of text?
The difference between printf and fprintf is ?
Explain the difference between exit() and _exit() function?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Write a Program to find whether the given number or string is palindrome.
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is the advantage of using #define to declare a constant?
Differentiate between static and dynamic modeling.
How can you convert integers to binary or hexadecimal?