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 / tyutyjtytydf
#include<stdio.h>
#include<conio.h>
main()
{
if(puts("hello world"))
{}
}
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
how to build a exercise findig min number of e heap with list imlemented?
swap 2 numbers without using third variable?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Explain how can I right-justify a string?
I need previous papers of CSC.......plz help out by posting them.......
How to draw the flowchart for structure programs?
What is the function of volatile in c language?
Is register a keyword in c?
write an algorithm to display a square matrix.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain what are the different data types in c?
Is c programming hard?
Is c high or low level?
Why does everyone say not to use scanf? What should I use instead?
Write a program to implement queue.