Making an 3x3 array with random numbers[code]#include <iostream> #include <cstdlib> using namespace std; int main() { int matrix[3][3]; ...
What does a return 0 do?From my understanding, Return 0 basicly means your program executed correctly. If it's stopped in th...
Can You Go Without Brackets?OK, Thanks, I guess that's the part that confused me!
Can You Go Without Brackets?Question, is: [code] while(true)if(2==2)cout<<42; [/code] The [b]exact[/b] same thing as: ...