What is pass by value in c?


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

Post New Answer

More C Interview Questions

main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?

1 Answers   GATE,


What is data structure in c programming?

0 Answers  


What is the difference between constant pointer and constant variable?

0 Answers   NIIT,


List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

0 Answers   Ignou,


why the execution starts from main function

9 Answers  






What does a run-time "null pointer assignment" error mean?

2 Answers  


How to develop software using "c" programming?

1 Answers   IBM, TCS,


we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????

4 Answers   Google,


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

0 Answers  


develop algorithms to add polynomials (i) in one variable

0 Answers   Ignou, TCS,


which one is highest Priority in c? a)=,b)+,c)++,d)==

4 Answers  


What are keywords c?

0 Answers  


Categories