fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int i,j,k;
  7. i=8.8,j=3.5,k=-5.2;
  8. static int a[5];
  9. for(i=0;i<=4;i++)
  10. printf("\n%d",a[i]);
  11. return 0;
  12. }
Success #stdin #stdout 0s 4416KB
stdin
Standard input is empty
stdout
0
0
0
0
0