+ 1
#include <iostream> using namespace std; int main() { int a[]={1,2,3,4}; for(int x=0;x<4;x++) { a[0]+=a[x]; }
What Output of this
2 Respostas
+ 2
2
+ 5
You don't have any statement for printing output, this code doesn't give any output.
What Output of this