wap to print "hello world" without using the main function.
Answer Posted / niranjan vg
compile the above file using the following command
# gcc -nostartfiles <filename.c>
# ./a.out
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
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
What is the significance of scope resolution operator?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is d scanf?
Tell me what is null pointer in c?
What are pointers in C? Give an example where to illustrate their significance.
What is c language and why we use it?
What is the difference between arrays and pointers?
How many bytes is a struct in c?
Differentiate fundamental data types and derived data types in C.
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Where static variables are stored in c?
Which node is more powerful and can handle local information processing or graphics processing?
Explain which function in c can be used to append a string to another string?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.