linuxtechJul 20, 20201 min readMake a simple question asking program from c language.source code: #include <stdio.h> struct student { char name[50]; int roll; float marks; } s; int main() { printf("welcome to a simple...
linuxtechMay 11, 20202 min readHow to make a simple zombie game using c++#include <iostream> #include <stdlib.h> #include <unistd.h> #include <time.h> using namespace std; int createZombie() { if (rand() % 67...
linuxtechMay 9, 20202 min readhow to make a tic tac toe game from c++ plz like,share and subscribe to my channel if you like the code- raw code- #include <iostream> using namespace std; char matrix[3][3] = {...
linuxtechApr 9, 20202 min readHow to make a simple snake game using c++ language#include<iostream> #include<cstdlib> #include<stdio.h> #include <termios.h> #include <unistd.h> #include <fcntl.h> #include <stdio.h>...