squidward's gpa should be higher than patrick's at least lol
@sjjvddyumiherhv37092 жыл бұрын
this is the type of comments that get 10k likes but life is unfortunate
@JMBooy Жыл бұрын
I knew ill find this in comments lol
@Jeromel929 ай бұрын
Squidward: “Everyone is an idiot except for me”
@MortonMcCastle6 ай бұрын
@@Jeromel92 Rumpelstiltskin: Nobody's smart but me!
@judymofficialchannel6377 Жыл бұрын
First explanation where someone tells how to get of legth of an Array which is not simple type Thanks man
@jblack1781 Жыл бұрын
You saved my @$$. My professor is a windbag that talks a looooot and says nothing. You explained it in this video so quickly, I have my framework built. Love you man. fr.
@PSIwolf39 Жыл бұрын
Alright, here's the code I made using an array of structs: #include #include #include #include #include typedef struct{ char speciesName[40]; int legs; bool endangered; } animal; int main(){ animal spider = {"Spider", 8, false}; // I'm just making assumptions with the endangered variable, I didn't do any research on this. animal panda = {"panda", 4, false}; animal human = {"human", 2, false}; animal flamingo = {"flamingo", 2, false}; animal animals[] = {spider, panda, human, flamingo}; int arraySize = sizeof(animals)/sizeof(animals[0]); printf("My favorite animals are the "); for(int i = 0; i < arraySize; i++){ printf("%s", animals[i].speciesName); if(i != arraySize - 1){ printf(", "); } else{ printf("."); } if(i == arraySize - 2){ printf("and "); } } }
@sevanthishekar43798 ай бұрын
This is a well written code buddy. Love the details you put into it with the full stops, commas and and.
@KP-fy5bf2 жыл бұрын
You did Squidward dirty bro
@griffineng19682 жыл бұрын
was looking for this comment lmao
@kaiserhhaie841 Жыл бұрын
Are those GPAs Spongebob Canon?
@LinkLibrary2 жыл бұрын
Great explanation, thanks.
@mo7sensingle402 Жыл бұрын
I like the " sandy is smart" . makes me subscribe
@chrisolo20012 жыл бұрын
I don't understand why you would need to divide the sizeof(students) by sizeof(student[0])
@weshilling2 жыл бұрын
size of refers to the actual storage size. so if sizeof(student[0]) is 2 bytes and sizeof(students) is 8 bytes, 8/2 = 4. this works as the size of the array is always going to be the size of each element in the array multiplied by the amount of elements.
@alexo-m042 жыл бұрын
bruh really gave squidward a 2.0 gpa
@best_vdits4 ай бұрын
Bro is the best
@4115steve Жыл бұрын
Patrick would have a gpa of -5
@H4x4t3hN00bz2 жыл бұрын
thank you gigachad
@birhanegulilat45272 жыл бұрын
Tnx Man really useful
@Wertasile Жыл бұрын
you are the goat
@Joao-oo8yj5 ай бұрын
Will placing those student structs inside the array copy the addresses of the structs or will it create new ones in memory?
@Acid_Burn9 Жыл бұрын
Squidward 2.0 GPA when Patrick has 2.5? Cmon man why u gotta do Squidward like that...
@danieldian87082 жыл бұрын
Sandy is smart 😂😂😂
@provokator-provocateur76033 жыл бұрын
Yo Bro! Can you make some video about typedef with struct?
@krampixgameplay52522 жыл бұрын
need full c++ course sir
@negriu11 ай бұрын
Why not use typedef like you did before??
@samisiddiqi54112 жыл бұрын
nice.
@bio20202 жыл бұрын
our professor wont let us touch main.
@sky-lk5fx Жыл бұрын
patrick smarter then squidward?
@popman-m7y Жыл бұрын
damn patrick gpa higher than squidward, why you dissing squidward like that bro
@pachutcr826 Жыл бұрын
maquina
@leonardd3688 Жыл бұрын
Weiß jemand wie man den GPA der Students absteigend geordnet anzeigen lassen kann?