What are nested functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 4 types of functions?
Can the sizeof operator be used to tell the size of an array passed to a function?
write a program to rearrange the array such way that all even elements should come first and next come odd
what is the differance between pass by reference and pass by value.
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
What is the use of keyword VOLATILE in C?
What is extern c used for?
What is scope rule in c?
What is const and volatile in c?
Why is c called c not d or e?
Why static variable is used in c?