Programming with Rakesh

Hey Guys,

My name is Rakesh Kumar. I am a programmer by passion and profession.

My main AIM of this channel is to:
1) Help people learn Coding/Programming
2) Concept sessions with Whiteboard experience
3) Practical sessions with code editor and Browser




Programming with Rakesh

Vote for Next course from w3schools.com ‪@w3schools‬

1 month ago | [YT] | 1

Programming with Rakesh

Which Tutorial Series you want next?

1 month ago | [YT] | 0

Programming with Rakesh

JavaScript variables explained!

8 months ago | [YT] | 2

Programming with Rakesh

CREATE A TRIANGLE USING C++
================================

#include <iostream>

using namespace std;

int main() {
int rows;

cout << "Enter the number of rows for the triangle: ";
cin >> rows;

for (int i = 1; i <= rows; i++) {
for (int j = 1; j <= rows - i; j++) {
cout << " ";
}
for (int k = 1; k <= 2 * i - 1; k++) {
cout << "*";
}
cout << endl;
}

return 0;
}

1 year ago | [YT] | 1

Programming with Rakesh

Which Language You Use More?

1 year ago | [YT] | 2

Programming with Rakesh

Watch Now!

1 year ago | [YT] | 1

Programming with Rakesh

Watch Now!

1 year ago | [YT] | 1