Skip to main content

Posts

This one is a personal experience Another year of my college just passed This year, without a bit of doubt, was the the best year of my life. This year I did almost everything literally everything, I fell in love became a topper, came last, overcame a heartbreak, got betrayed, saw a lot of fake people, but one thing never changed all these years the two friends that I had.  There are a lot of things to share but I am too Lazy to type so are the best ones 1 late-night party. 2 drank beer for the first and the last time. 3 cried in front of hod that to for a girl. 4 loved someone other than my family. 5 claimed over the wall to enter the hostel. This list won't over.😁😁
Recent posts
Basic C project 1 for First year students. Tic Tac  Tic    toe game(code) #include<stdio.h> #include<windows.h> #include<stdlib.h> #include<conio.h> struct myDataType{     int i;     char ch; }inputValue(); void run(); int check(char sym[9],char ch,int count); struct myDataType inputValue(char sym[9],int count); void Display(char sym[9]); void main(){     char reStart;     again: run(); printf("\nIf You Want To Play Again Press 1: \nElse Any:"); scanf("%s",&reStart); if(reStart == '1')         {             system("cls");             goto again;         }     else         exit(0); } void run(){     int count = 0;     struct myDataType info;     char symbol[9] = {'1','2','3','4','5','6','7','8','9'};     Display(symbol);     again:     info = inputValue(symbol,count);     symbol[info.i] = info.ch;     sys