Can we declare a function inside a function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is indirection? How many levels of pointers can you have?
Who developed c language and when?
what is diference between return 0 and return NULL??
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What is the difference between a structure and a union?
how to write a bubble sort program without using temporary variable?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
What is the use of #define preprocessor in c?
What is the use of the #include directive?
Explain pointer. What are function pointers in C?