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 / sanjay
write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
int main()
{
while(!(printf("%s \n","hello world!!!")));
{
}
return(0);
}
| Is This Answer Correct ? | 22 Yes | 92 No |
Post New Answer View All Answers
What is volatile variable how do you declare it?
What is omp_num_threads?
Is c still relevant?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Explain how can you tell whether two strings are the same?
What is void main ()?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Between macros and functions,which is better to use and why?
Explain what is the benefit of using const for declaring constants?
What language is lisp written in?
What is printf () in c?
What are preprocessor directives in c?
List some of the dynamic data structures in C?
What is the difference between ‘g’ and “g” in C?
What are identifiers c?