An occasionally updated blog, mostly related to programming. (Views are my own, not my employer's.)
#include <iostream>using namespace std;int main(){ for (int i = 0; i < 3; ++i) { int a[1] = {13}; cout << a[0] << endl; } return 0;}
Post a Comment
No comments:
Post a Comment