wap to print "hello world" without using the main function.

Answer Posted / raghuram

To display "hello world"

printf("\"hello world\"");

Is This Answer Correct ?    5 Yes 57 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how do you determine the length of a string value that was stored in a variable?

670


Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.

653


What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

668


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

3844


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

625






What are dangling pointers in c?

643


What is the right type to use for boolean values in c? Is there a standard type?

566


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

3056


How does normalization of huge pointer works?

641


What is the difference between typedef struct and struct?

602


Write a c program to build a heap method using Pointer to function and pointer to structure ?

4179


What is sizeof c?

609


A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

1777


What are two dimensional arrays alternatively called as?

661


Write a code to generate a series where the next element is the sum of last k terms.

734