Why we not create function inside function.
No Answer is Posted For this Question
Be the First to Post Answer
How do you define CONSTANT in C?
Can math operations be performed on a void pointer?
What is 'bus error'?
what does static variable mean?
Which is better between malloc and calloc?
WHOT IS CHAR?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Explain modulus operator.
What is function pointer and where we will use it
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
What is function definition in c?
What is a memory leak in structures? How can we rectify that?