Skip to content

Instantly share code, notes, and snippets.

@abhisekpadhi
Created November 17, 2018 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhisekpadhi/050319ef84bf7a97f08e05f4d7126713 to your computer and use it in GitHub Desktop.
Save abhisekpadhi/050319ef84bf7a97f08e05f4d7126713 to your computer and use it in GitHub Desktop.
testing c++17
#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