What is a substring in c?
No Answer is Posted For this Question
Be the First to Post Answer
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 a constant pointer in C
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
what are non standard function in c
What is the condition that is applied with ?: Operator?
How can I convert integers to binary or hexadecimal?
How can we allocate array or structure bigger than 64kb?
What does sizeof int return?
When should I declare a function?
Between macros and functions,which is better to use and why?
What is the purpose of scanf() and printf() functions?
What is malloc() function?