Me right now

  Рет қаралды 2,760

Zim

Zim

Күн бұрын

#day37

Пікірлер: 23
@neoplumes
@neoplumes 7 ай бұрын
I kept thinking, "you don't need a variable!" And then found out that's where the emotion lives
@Obbsnja
@Obbsnja 7 ай бұрын
Yes the screams keep getting louder and longer
@baranjan6969
@baranjan6969 7 ай бұрын
Fun fact: print(A, end="") Will print without ending a line in python.
@Obbsnja
@Obbsnja 7 ай бұрын
I never knew that thanks!
@SCP--oz6oz
@SCP--oz6oz 7 ай бұрын
Why is this in my recommended??? I only watch videos regarding history or psychology and have never set eyes on code in my life.
@Obbsnja
@Obbsnja 7 ай бұрын
I don’t know why either, KZbin’s been sending this one out like crazy recently Glad you’re here though!
@SCP--oz6oz
@SCP--oz6oz 7 ай бұрын
@@Obbsnja the algorithm is truly an enigma
@Obbsnja
@Obbsnja 7 ай бұрын
@@SCP--oz6oz so true
@biigsmokee
@biigsmokee 7 ай бұрын
because this is psychology
@baranjan6969
@baranjan6969 7 ай бұрын
I feel you lmao
@Obbsnja
@Obbsnja 7 ай бұрын
It’s been a rough week for me I wish you the best for yours
@Eren_Yeager_is_the_GOAT
@Eren_Yeager_is_the_GOAT 8 ай бұрын
i thought you were a C++ developer?? traitor >:(
@Obbsnja
@Obbsnja 8 ай бұрын
Desperation leads to many regrettable decisions
@woodenmonkeyfox
@woodenmonkeyfox 7 ай бұрын
My version in C : ```c #include #include typedef struct cell cell; struct cell { char c; cell *next; }; void new_cell(char c, cell *aOG) // add a new cell { cell *a = aOG; while (a->next != NULL) { a = a->next; } cell *new_a; new_a = (cell*)malloc(sizeof(cell)); new_a->c = 'A'; new_a->next = NULL; a->next = new_a; } void print_cell(cell *aOG) // print all the cells of aOG { cell *a = aOG; while (a != NULL) { printf("%c", a->c); a = a->next; } } int main(int argc, char *argv[]) { cell *a; a = (cell*)malloc(sizeof(cell)); a->c = 'A'; a->next = NULL; while (1) { new_cell('A', a); print_cell(a); } return 0; } ```
@Obbsnja
@Obbsnja 7 ай бұрын
Nice use of a linked list Though it isn’t exactly the same because there isn’t a newline at the end of printing the last cell
@woodenmonkeyfox
@woodenmonkeyfox 7 ай бұрын
​@@Obbsnja Thanks, I did my best. I'm still learning
@Obbsnja
@Obbsnja 7 ай бұрын
@@woodenmonkeyfox You did really well! you should be proud
@bolsadepapas8269
@bolsadepapas8269 7 ай бұрын
#include int main(){int i=0; int a=0;while(1){a=i; for (a = 1; a
@Obbsnja
@Obbsnja 7 ай бұрын
@@bolsadepapas8269 short and sweet nice job, but what does a=i do, the for loop sets a to one each while loop iteration, right?
STOP Learning These Programming Languages (for Beginners)
5:25
Andy Sterkowitz
Рет қаралды 702 М.
3 Months of 2024 Left
2:31
Zim
Рет қаралды 15
Inside Out 2: ENVY & DISGUST STOLE JOY's DRINKS!!
00:32
AnythingAlexia
Рет қаралды 14 МЛН
the TRUTH about C++ (is it worth your time?)
3:17
Low Level
Рет қаралды 717 М.
Scrolling Text Time Waster
1:04
FISHY
Рет қаралды 1,2 М.
Korean languege clock test(12:00~11:59)
3:12
ㅎㅇ
Рет қаралды 10
Learn To Code Like a GENIUS and Not Waste Time
9:41
The Coding Sloth
Рет қаралды 1,6 МЛН
When a Python Developer Tries to Learn C++
3:31
Big A Productions
Рет қаралды 4,8 М.
1 Year of c++/SFML
10:40
Muzkaw
Рет қаралды 1,6 МЛН
Can You Pass Harvard University Entrance Exam? 👇
9:38
Enjoy Math
Рет қаралды 487
Python vs C++ Speed Comparison
1:04
The Builder
Рет қаралды 2,1 МЛН