How do you determine the length of a string value that was stored in a variable?
No Answer is Posted For this Question
Be the First to Post Answer
C language questions for civil engineering
how to find out the union of two character arrays?
How can I change their mode to binary?
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
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
Write a program that an operator and two operands read from input operand operator on the implementation and results display.
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is a union?
What are dangling pointers? How are dangling pointers different from memory leaks?
Explain what standard functions are available to manipulate strings?
write a program to print calender using for loop.