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 / sandeep
if(printf("HELLO WORLD"))
| Is This Answer Correct ? | 41 Yes | 17 No |
Post New Answer View All Answers
Explain heap and queue.
How would you rename a function in C?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
When should a type cast not be used?
Explain why c is faster than c++?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What are the properties of union in c?
How do you determine the length of a string value that was stored in a variable?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Explain what standard functions are available to manipulate strings?
Differentiate Source Codes from Object Codes
How many types of arrays are there in c?
What is the difference between far and near ?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream