Answer Posted / prof.gagandeep jagdev
No, it is not possible to define any function within a
function. However we can call a function from within
another function.
| Is This Answer Correct ? | 30 Yes | 4 No |
Post New Answer View All Answers
What is the difference between %d and %i?
What is the explanation for the dangling pointer in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How many types of sorting are there in c?
What is the right type to use for boolean values in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Why is event driven programming or procedural programming, better within specific scenario?
How can I ensure that integer arithmetic doesnt overflow?
How can my program discover the complete pathname to the executable from which it was invoked?
What is dynamic memory allocation?
What is difference between scanf and gets?
What are 3 types of structures?
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 does main () mean in c?
What is NULL pointer?