Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
#31
#include <iostream> void zakres( int x, int y ) { while (x <= y) { std::cout << x << ", "; x++; } std::cout << "koniec" << std::endl; } int main() { zakres( 1, 5 ); zakres( 8, - 1 ); zakres( 10, 10 ); return 0; }
run
|
edit
|
history
|
help
0
Redeclare with auto
#21
hgh
fun
Guess a number in c++
dhar1
karma legacy "variant" with attr_cast
Get parameter type
auto decltype - Return Type Decltype
hangman