8.1 Introduction to Arrays in C++ | Guaranteed Placement Course

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

I like the confidence she has when she deliver the lectures..

AbhishekKumar-cksd
Автор

bhaiya ek suggestion hai.

Har week ke end me ek doubt session related to this course livestream kar dijiye.


jisko jisko ye chahiye like karo.

snehilsinha
Автор

Taking an array from the user would mean using variable size for the array.
If you guys are not using vs code or codeblock you will see an error where the comipiler is asking for a constant instead of n.
So instead of using :

int n;
cin>>n;
int arr[n];
for(int i=0; i<n; i++) {
cin>>arr[i];

Use :

int n;
cin>>n;
int *arr = new int[n];
for(int i=0; i<n; i++) {
cin>>arr[i];

arnavchandra
Автор

When I play video and lesten the voice i be like : कहां थे आप ....😂❤️🔥👍🏻

AbhishekSingh-eobi
Автор

for those who are using Microsoft Visual and getting input array size error. you have to initiate dynamic array instead of static array.
#include <iostream>
#include<string.h>
using namespace std;


int main()
{
int n;
cout << "enter size";
cin >> n;
int *arr{ new int[n] };
for (int i=0; i < n; i++)
{
cin >> arr[i];
}












for (int i=0; i < n; i++)
{
cout << arr[i];
}


}

shubhamjoshi
Автор

Amazing c++ course
Every one have to watch and learn this course 👍👍👍👍👍

piyushbhidikar
Автор

result :: after preparing c++ from this series You may become rahul

vishnudutta
Автор

Girls in thumbnail and examples with girlfriends always does the work for
BTW great work didi....lots of love and respect for ya.

abanerjee
Автор

Rahul is so lucky.
He have too many girlfriends.

aishwary
Автор

Aap hi sab video kijiye aapki aawaz dimaag ke saath saath dil ma bhi utar jaati ha ♥️

Pritamdaspk
Автор

Thank you for this amazing series. I am from Electrical background interested in CS/IT and this playlist helped me a lot

jaylalakiya
Автор

I'm the first viewer💪🏻🔥... Bhaiya aapne aag lga rkhi hai...!!🔥 And thanks di aap bhott acha explain karte hoo🔥🔥💪🏻 thank you so much other team members 💪🏻🔥❤️

surenderohri
Автор

Today I got to understand what really ARRAY is??? Thankyou APNA COLLEGE.

rahultuhania
Автор

she expains beautifully, i cant stop watching her video

AnkitKumarmeb
Автор

"...aur usme daal do uske.. age !!"😂
(0.10 to 0.13 sec)

BTW Thank you so much for this type of consistency. Carry on. ❤

bapighosh
Автор

Awesome lecture!!
The practice questions link isn't opening. please see.
And also in the notes, lec 7.1 is titled as 8.1 and now 8.1 is titled as 9.1
thanks again @Apna College

sanatandharmyogicculture
Автор

maine to video's aage karke dekhe kaha aane vali hai didi...finally aa gayi, sukun mila

pranalivekhande
Автор

jindagi k maze to rahul le rha h... hm to bs coding sikhte hi rah jaenge🥲

abhinavkumariitism
Автор

Ye rahul ko milna hai muze ek bar zindagi me😂
Aur ye baki gfs ka bhi btana padega neha ko😂😂

swayamshinde
Автор

thanks a lot
as compared to two bhaiya in previous 2 videos you're far better then those bhaiya and explain the concept very easily
they may be good programmers but teaching to others is a different thing and i think you're pretty good on it.

ritikshrivastava