Untitled
unknown
c_cpp
a year ago
261 B
5
Indexable
#include <string> #include <iostream> #include<windows.h> using namespace std; void g(int a, int b) { int s = a; int k = b; int c = 0; c = k; k = s; s = c; cout << "SUCCESFUL"; } int main() { int a, b; cin >> a >> b; g(a, b); }
Editor is loading...
Leave a Comment