Anonymous
wow. rip your grades then
Anonymous
Don't be all too harsh
apocalypse
wow. rip your grades then
I m still learning. Did u learn right from the womb?
Anonymous
I m still learning. Did u learn right from the womb?
Did you learn how to read? Because if you did you'd know that this chat isn't for doing your schoolwork, dear~
apocalypse
I just want to know where is the mistake.?feet and inches out put shows 0
apocalypse
I will leave this group. Right after
Anonymous
*sighs* Go read the rules.
MᏫᎻᎯᎷᎷᎬᎠ
MᏫᎻᎯᎷᎷᎬᎠ
You should write scanf("%f", &height);
apocalypse
iftekhar
Thnq so much..
MᏫᎻᎯᎷᎷᎬᎠ
Thnq so much..
You'r welcome 👍
MᏫᎻᎯᎷᎷᎬᎠ
Lool At least he got what he came for ;)
Anonymous
Can we define a static pointer variable?
ECOM
H
Anonymous
Can u explain buffer overflow in simple terminology nd what is buffer mean here?
Anonymous
Sure. A buffer is a cup. If you put too much coffee into it you have a buffer / coffee overflow :)
Anonymous
Arabica ;)
Anonymous
Yom
Buffer is memory used temporarily to store output or input data while it is transferred
Yom
Then coffee machine is output, human body is input
Anonymous
So a programm use buffer Or ram?
buffer can be anywheres. RAM or swap, afaik
Anonymous
it's just a segment of memory.
Anonymous
Oook👍
Yom
Because human can't handle too much coffee due to it's temp and amount
Anonymous
:)
Joesph
Lmao
バレンタインがいない柴(食用不可)
The hell you guys go through
Apt command girlfriend not found ...
バレンタインがいない柴(食用不可)
😭
Joesph
😭
😭
Anonymous
MS word?
Joesph
interesting editor you use
Looks to me like that old turbo c++
Joesph
But why is he using that old 16bit
Drew Diligence
just seems like there is something more modern and user friendly nowadays 🤷‍♀️
Joesph
Its basic
Most basic code won't even run on that lmao
Joesph
It had its time
Joesph
Let the turbo c++ rest in peace
Anonymous
You let the girlfriend dream rest in peace then
Nikita
Hi there, maybe someone can give me some good resources for studying computer graphics? I'm really interesting in game development but i've decided to start from fundamental things like computer graphics. I'm looking for computer graphics theory and practice books, i'll be really glad
Drew Diligence
everyone gets girlfriends in 2020
バレンタインがいない柴(食用不可)
MᏫᎻᎯᎷᎷᎬᎠ
#ot
Nikita
use c# and learn unity engine
I'm interesting more in low level programming like raw opengl or directx
Nikita
Unity is ok but too high for me now
rex
take ur time a learn what u want
Nikita
take ur time a learn what u want
I'm looking for strong computer graphics book and asking you as well
Tokin
https://youtu.be/PwuIEMUFUnQ
Joesph
I'm looking for strong computer graphics book and asking you as well
One thing that computer world got different from another courses you know what?
Joesph
It don't use books
Joesph
Learn online, try online courses
Joesph
Do the stuff on your comp
Tokin
Tutorials can ve so slow but books you'll grasp faster
Tokin
Yeah books or PDFs.. potato patato
Joesph
Nikita
One thing that computer world got different from another courses you know what?
Who said that courses are better? imho for theory books should be the best choice
rex
nope
Nikita
practices of course should be on the first place anyway especially in programming
Noble Friend
Hi please can anyone help with this? Write a program that takes an integer keyed in from the terminal and extracts and displays each digit of the integer in English. So, if the user types in 932, the program should display nine three two Remember to display “zero” if the user types in just a 0.
Noble Friend
#include <stdio.h> #include <stdlib.h> int main (void){ int value, remainderArray[20], i, count =0, digits, reversingValues[20], j; printf("How many Digits will your value contain?: "); scanf("%d", &digits); printf("Input your value: "); scanf("%d", &value); for (i = 0; i<digits; i++){ remainderArray[i] = value % 10; value = value /10; count++; } for (i=digits-1, j=0; i>=0; i--, j++) reversingValues[j] = remainderArray[i]; for (i=0; i<count; i++){ if(reversingValues[i] == 1){ printf("one "); } else if(reversingValues[i] == 2){ printf("Two "); } else if (reversingValues[i] == 3){ printf("Three "); } else if (reversingValues[i] == 4){ printf("Four "); } else if (reversingValues[i] == 5){ printf("Five "); } else if (reversingValues[i] == 6){ printf("Six "); } else if (reversingValues[i] == 7){ printf("Seven "); } else if (reversingValues[i] == 8){ printf("Eight "); }else if (reversingValues[i] == 9){ printf("Nine "); }else if (reversingValues[i] == 0){ printf("Zero "); } // printf("\nvalue= %d \n", reversingValues[i]); } printf("\n\n"); return 0; }
Angelo
how can I skip the space and read only A1 from the txt file?