Tell me when would you use a pointer to a function?
No Answer is Posted For this Question
Be the First to Post Answer
By using C language input a date into it and if it is right?
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
What does %p mean?
Which is the best sort method for library management?
What is c language & why it is used?
Write a program to check palindrome number in c programming?
What is difference between %d and %i in c?
What is the use of c language in real life?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
WHAT IS ABSTRACT DATA TYPE
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
How can you increase the size of a dynamically allocated array?