Do you know the difference between malloc() and calloc() function?
No Answer is Posted For this Question
Be the First to Post Answer
Can you think of a logic behind the game minesweeper.
List the variables are used for writing doubly linked list program.
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
What is the difference between union and anonymous union?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
How do I get a null pointer in my programs?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
what is the format specifier for printing a pointer value?
What are examples of structures?
What is an lvalue?
What is an example of structure?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?