What is the difference between call by value and call by reference in c?


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

Post New Answer

More C Interview Questions

How do I swap bytes?

0 Answers  


Explain how do you print an address?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


What is the Lvalue and Rvalue?

2 Answers  


write a program to convert a expression in polish notation (postfix) to inline (normal)

0 Answers   Siemens,






How does pointer work in c?

0 Answers  


What is the Purpose of 'extern' keyword in a function declaration?

0 Answers  


write a progam to compare the string using switch case?

1 Answers  


Why is C language being considered a middle level language?

0 Answers  


what are threads ? why they are called light weight processes ? what is the relation between process and threads ?

1 Answers  


What is malloc calloc and realloc in c?

0 Answers  


Explain the difference between the local variable and global variable in c?

0 Answers  


Categories