Print the Elements of an Array in Reverse Order | C++ Program | Cool Coding |

preview_player
Показать описание
Print the Elements of an Array in Reverse Order | C++ Program | Cool Coding |

Video Hashtag: #coolcoding #printinreverseorder #arrayprogram #cppprogram

Please Like Subscribe Share and Comment Your Suggestions...
Рекомендации по теме
Комментарии
Автор

In line number 21:
There should be i=n instead of i=n-1
Because it loses the first value(index [0]) of an array.

theamazingtutorial.
Автор

you should not use an c-style array with variabile lenght, is a bad pratics and is unsafe insted you can use an std::array

onetimeplace