Write a program to reverse a given number in c language?
How can you determine the maximum value that a numeric variable can hold?
What is the difference between exit() and _exit() function in c?
Explain how do you print only part of a string?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How the c program is executed?
Two's compliment of -5
without using arithmatic operator convert an intger variable x into x+1
how to find out the inorder successor of a node in a tree??
How can I copy just a portion of a string?
What is string length in c?
Find the highest of three numbers and print them using ascending orders?
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