Anonymous
wow. rip your grades then
Anonymous
Anonymous
Don't be all too harsh
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ᏫᎻᎯᎷᎷᎬᎠ
Yakov
MᏫᎻᎯᎷᎷᎬᎠ
You should write
scanf("%f", &height);
Dima
MᏫᎻᎯᎷᎷᎬᎠ
Anonymous
apocalypse
I_Interface
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
Anonymous
Arabica ;)
Anonymous
Yom
Buffer is memory used temporarily to store output or input data while it is transferred
Anonymous
Anonymous
Yom
Then coffee machine is output, human body is input
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
Joesph
Lmao
バレンタインがいない柴(食用不可)
😭
Joesph
Drew Diligence
Anonymous
MS word?
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
rex
Nikita
Unity is ok but too high for me now
rex
take ur time a learn what u want
Tokin
https://youtu.be/PwuIEMUFUnQ
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
Joesph
Tokin
Yeah books or PDFs.. potato patato
Joesph
Joesph
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
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?
Joesph