Explain what happens if you free a pointer twice?
No Answer is Posted For this Question
Be the First to Post Answer
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
write a c program to convert fahrenheit to celsius?
write a program to remove duplicate from an ordered char array? in c
What is pointer in c?
When can you use a pointer with a function?
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 diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
Why do we use main function?
What is pointer to pointer in c with example?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
What is the difference between exit() and _exit() function in c?
When should volatile modifier be used?