Answers

Question and Answer:

  Home  Basic C++ Syntax

⟩ What is functions Syntax in C++?

Functions that a programmer writes will generally require a prototype. Just like a blueprint, the prototype tells the compiler what the function will return, what the function will be called, as well as what arguments the function can be passed. When I say that the function returns a value, I mean that the function can be used in the same manner as a variable would be. For example, a variable can be set equal to a function that returns a value between zero and four.

For example:

#include // Include rand()

using namespace std; // Make rand() visible

int a = rand(); // rand is a standard function that all compilers have

 279 views

More Questions for you: