Is c call by value?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What does %p mean?
Method Overloading exist in c ?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Explain what will the preprocessor do for a program?
Function calling procedures? and their differences? Why should one go for Call by Reference?
How is actual parameter different from the formal parameter?
what is a static function
what are two kinds of java
how to find turn around time in operating system?
What do header files do?
What are the benefits of organizational structure?