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 / anshukumarsrivastava.
a program to print a string i am in allahabad without using
a semicolon.
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf(" i am in allahabad"))
getch();
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What is a pointer in c plus plus?
In a header file whether functions are declared or defined?
What is a spanning Tree?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Write a code of a general series where the next element is the sum of last k terms.
When should a type cast not be used?
please send me the code for multiplying sparse matrix using c
What is far pointer in c?
When is a void pointer used?
Write a program to check armstrong number in c?
How many types of functions are there in c?
What is the purpose of the preprocessor directive error?
Is c object oriented?
How do I swap bytes?