Difference between pass by reference and pass by value?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

In C, What is the #line used for?

2 Answers  


logic for x=y^n

1 Answers   Delphi,


What does %c do in c?

0 Answers  


What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }

4 Answers   CTS, Oracle,


Where local variables are stored in c?

0 Answers  






Can you write the function prototype, definition and mention the other requirements.

0 Answers   Adobe,


struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]

3 Answers  


Why is event driven programming or procedural programming, better within specific scenario?

0 Answers   Wipro,


GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA

0 Answers  


proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?

7 Answers   Hughes,


HOW CAN ADD OUR FUNCTION IN LIBRARY.

5 Answers  


main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }

2 Answers   Vector, Vector India,


Categories