Responsive image

Up next


MGTOW Experimenting with C and Guilded Server now Public

25 Views
Published on 20 Jan 2023 / In Film & Animation

hello everyone. i was experimenting with the C programming language.and also the guilded server is public now.

Follow me on odysee.com
https://odysee.com/@Igor_MGTOW:6
Follow Me on Twitter.
https://twitter.com/IgorMgtow
Join My Guilded Server.
https://www.guilded.gg/i/kamWjGXk

Show more
Responsive image

Log in to comment

Igor MGTOW And Video Games

Follow me on odysee.com
https://odysee.com/@Igor_MGTOW:6
Follow Me on Twitter.
https://twitter.com/IgorMgtow
Join My Guilded Server.
https://www.guilded.gg/i/kamWjGXk

   0    0
Igor MGTOW And Video Games

source code of what i was doing

#include
#include

int main()
{
int x = 321; // We are testing something here. its probably a variable or something.
int z = 10000; // 10000 variable
int a = -122; // negative variable
int mgtow = 1000; //integer
float andrewtate = 100; //floating point number
float HappyHumbleHermit = -1; // new float point
int arraytest [23][14] = { {10,123,5}, {198, 1, 32}};
char input[10];
printf("Hello world!
");
printf("\"Testium\" - igor
"); //Quote Test lets see what happens
printf("%d
", x); /* we need to separate this variable from the 10000 variable so that it displays text and variables as separate lines of text. otherwise we are going to get
brainfucked and end up not being able to solve the issue*/
printf("%d
", z);
printf("%d
", a);
printf("We need to get the variable separation fixed or there will be an issue");
scanf("%9s", input); // this will test the scanf feature i saw in a video
if (input == "y") {
printf("Congratulations for being a MGTOW"); //should say you are a mgtow
}
else (input == "n"); {
printf("you should go MGTOW"); //should say you are not a mgtow
}
return 0;
}

   0    0
Show more

0

Up next