Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

fiunction in c++

// Create a function
void myFunction() {
  cout << "I just got executed!";
}

int main() {
  myFunction(); // call the function
  return 0;
}

// Outputs "I just got executed!"
 
PREVIOUS NEXT
Tagged: #fiunction
ADD COMMENT
Topic
Name
8+2 =