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 / manjusha k
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("hello world")){
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What 'lex' does?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Where register variables are stored in c?
Which driver is a pure java driver
What is a pointer variable in c language?
Is there anything like an ifdef for typedefs?
Are enumerations really portable?
What is c system32 taskhostw exe?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
How many identifiers are there in c?
What is selection sort in c?
How can I read/write structures from/to data files?
What is a memory leak? How to avoid it?
How is a null pointer different from a dangling pointer?
Can we access the array using a pointer in c language?