Update test.cpp

This commit is contained in:
ihsinme
2022-03-10 17:56:34 +03:00
committed by GitHub
parent fa3ce61369
commit a094e6f63b

View File

@@ -115,8 +115,8 @@ int functionWork2b_() {
globalVala2 = a[0];
return 0;
}
int functionWork3b(int i) {
scanf("%i", &i); // BAD
int functionWork3b(int * i) {
scanf("%i", i); // BAD
return 0;
}
int functionWork3() {