https://ide.codingblocks.com/s/52719 how to acheive , in my output i am little confuse kindly solve the code
Array sum of two array
Your logic is correct , You are just printing in the wrong output format. You have to print every digit followed by comma.
for eg 1 2 3 + 2 5 6= 3 7 9
so instead of printing 379, you have to print 3, 7, 9, END
thats because you have made a “int” return type and you dont need to return any value ,
change the return type of function as void .
