Created
November 22, 2013 12:01
-
-
Save nazrdogan/7598851 to your computer and use it in GitHub Desktop.
Array element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream> | |
| using namespace std; | |
| int test [5] = { 0, 0, 0, 0, 0 }; | |
| int main(){ | |
| for (int n=0; n<5; n++){ | |
| if(test[n]==0) | |
| { | |
| cout<<"TEST"<<test[n]; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment