Ask your own question, for FREE!
Computer Science 16 Online
OpenStudy (anonymous):

find the output of the program. [assume that all the required header files are included in the program] void main() { int x[3][5]={ {18,20,13,24,35}, {7,8,6,9,10},{19,22,30,21,15} } ; int *n=&x[0][0]; cout<

OpenStudy (anonymous):

end1 25 18 end1 22 11 i think it's kinda straight forward #include<iostream> int main() { int x[3][5]={ {18,20,13,24,35}, {7,8,6,9,10},{19,22,30,21,15}} ; int *n=&x[0][0]; std::cout<<"endl:- "<<(*(n+3)+1) <<":"<<*(*x+2)+5<<"\n"; std::cout<<"endl:- "<<*(*(x+2)+1) <<":"<<*(x[1]+2)+5; } this is the cpp file in case u need

OpenStudy (anonymous):

THANX MATE!!!! I WANTED TO KNOW WHETHER I HAD WRITTEN THE CORRECT ANSWER :D

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!