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 / sagar naik
#include<stdio.h>
void main()
{
if(printf("hello world"))
}
| Is This Answer Correct ? | 43 Yes | 25 No |
Post New Answer View All Answers
What is a nested formula?
Explain how can I open a file so that other programs can update it at the same time?
Differentiate between #include<...> and #include '...'
What is the use of header files?
What is spark map function?
What are conditional operators in C?
Explain the bubble sort algorithm.
Explain what is the difference between a string and an array?
What are high level languages like C and FORTRAN also known as?
Do pointers take up memory?
State two uses of pointers in C?
When should I declare a function?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What's the total generic pointer type?
What are reserved words?