0
Loops
Is for(int x:arr) work in C and C++?
3 Answers
+ 6
Shams Urhman Rashidy in c you may have this type of for loop
for(int x; condition; increment){
}
+ 1
Thanks for help
0
We can have some like this loop in c
Is for(int x:arr) work in C and C++?