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
Is c pass by value or reference?
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
What is the purpose of sprintf?
Does c have class?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Differentiate call by value and call by reference?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
Explain what are the different file extensions involved when programming in c?
What extern c means?
Why calloc is better than malloc?
Write a program to implement queue.
What type of function is main ()?
How do you write a program which produces its own source code as output?
Is using exit() the same as using return?
How do you list files in a directory?