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

Write a program in c to input a 5 digit number and print it in words.

11 Answers  


What is the difference between a function and a method in c?

0 Answers  


Write a program to show the workingof auto variable.

2 Answers   Infotech,


What is variables in c?

0 Answers  


Why doesnt the call scanf work?

0 Answers  






what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }

7 Answers  


Can you please compare array with pointer?

0 Answers  


let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................

8 Answers  


what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??

5 Answers  


main() { int i=400,j=300; printf("%d..%d"); }

13 Answers   ME,


Can u return two values using return keyword? If yes, how? If no, why?

7 Answers  


Do you know what is the purpose of 'extern' keyword in a function declaration?

0 Answers  


Categories