CJCoding With Joseph

Static Local Counter

Write a function int nextId() that uses a static local variable to return a new id each time it is called: the first call returns 1, the second 2, and so on. Call nextId() three times, printing each returned value on its own line:

1
2
3

A static local variable keeps its value between calls.

Expected Output:

1
2
3
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.