Computer Science, asked by gd4203448, 8 months ago

1. ਸੀ ਵਿੱਚ ਪੈਰਾਮੀਟਰ ਪਾਸਿੰਗ ਯੰਤਰੀਕਰਨ ਕੀ ਹੁੰਦਾ ਹੈ? The parameter passing mechanisn used in C is..............?C में यांत्रिकी पासिंग पैरामीटर क्या है? *
Call by name/ਕਾਲ ਬਾਏ ਨੇਮ/कॉल बाय नेम
call by value/ਕਾਲ ਬਾਏ ਵੇਲਯੂ/कॉल बाय वेल्यू
name call/ਨੇਮ ਕਾਲ/नेम कॉल
None of These/ਇਹਨਾਂ ਵਿੱਚੋਂ ਕੋਈ ਨਹੀਂ/इनमें से कोई नहीं​

Answers

Answered by topwriters
2

The parameter passing mechanism used in C is call-by-value

Explanation:

The most common methods of parameter passing are to pass the value of the actual parameter (call by value), or to pass the address of the memory location where the actual parameter is stored (call by reference).

The C programming language only has the pass-by-value parameter passing mechanism. It is similar to Java in this case.

Option 2 is the answer.

Similar questions