fork download
  1. int main() {
  2. const int height = 10, width = 10;
  3. int a[(height,width)];
  4. int b[(height,width)];
  5.  
  6. for(int y=0; y<height; ++y)
  7. {
  8. for(int x=0; x<width; ++x)
  9. b[y,x] = a[y,x];
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 2676KB
stdin
Standard input is empty
stdout
Standard output is empty