Computer Science, asked by gnurmahal, 5 months ago

Function declaration ends with .........?फ़ंक्शन की घोषणा .......... से समाप्त होती है? *
ਸੈਮੀਕਾਲਨ (;)/ Semicolon/सेमीकोलन
ਕਾਲਨ (:) /Colon/कोलोन

ਹਾੲਫਿਨ (-) /Hyphen/हाईफिन
ਉਪਰੋਕਤ ਸਾਰੇ ਹੀ /All of the above/ऊपर के सभी​

Answers

Answered by Anonymous
23

d) All of the above

Hope it will help you Mark me as brain list please

Answered by mad210203
2

Semicolon (सेमीकोलन)

Explanation:

  • Before creating a function, the function should declare above the main() function and it will specify return type, function name, number of parameters, parameters and datatype of each parameters,
  • Function declaration should be terminated with semicolon (;).
  • In a function declaration, parameter data types are mandatory, but parameter names are optional.
  • Function declaration is also known as function prototype or function signature.
  • Syntax: return type function name (arguments);
  • Example:

        int add(int a, int b);

        int multiply(int a, int b, int c);

Therefore, function declaration ends with a semicolon.

Similar questions