Created
November 17, 2018 11:59
-
-
Save abhisekpadhi/050319ef84bf7a97f08e05f4d7126713 to your computer and use it in GitHub Desktop.
testing c++17
This file contains 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 main(int argc, char *argv[]) { | |
int i; | |
std::cout << "Enter i:"; | |
std::cin >> i; | |
int a[i] = i++; | |
std::cout << "i: " << i << '\n'; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment