This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Game's Name: TicTacToe | |
* Version: 02(last) | |
* Developer: Minhas Kamal (BSSE0509, IIT, DU) | |
* Date: 08.June.2013 | |
* Comment: I wish it will give u as much pleasure as I had, developing it. | |
**/ | |
#include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Developer: Minhas Kamal (BSSE0509, IIT, DU) | |
* Date: 24.April.2013 | |
* Game's Name: Pebble Dropping | |
* Comment: I had only a 3.5 months experience in IIT while finishing this program. But I really had a lot of fun!!! | |
**/ | |
#include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Game's Name: Game of Life | |
* Developer: Minhas Kamal (BSSE0509, IIT, DU) | |
* Date: 16.September.2013 | |
* Comment: It is a copy of a famous program called "The Game Of Life" developed by a mathematician at | |
Cambridge. While developing it, I felt myself a real programmer. :) | |
**/ | |
#include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Game's Name: Three_Stones | |
* Version: 1 | |
* Developer: Minhas Kamal (BSSE0509, IIT, DU) | |
* Date: 17.June.2013 | |
* Comment: I have tried to improve theme of the game made by my friends Shamim(BSSE0511) [Full code is mine]. I have an intention to develop it more. | |
**/ | |
#include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Developer: Minhas Kamal | |
* Date: August-2013 | |
* Comment: The program can find very big factorial result, and it can be changed by changing 'DIGIT' value. | |
**/ | |
#include <stdio.h> | |
#define DIGIT 10000000 //change accordingly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Developer: Minhas Kamal | |
* Date: 28.Oct.2013 | |
* Description: This program reads a file & Zips or Extracts it. | |
* Comment: I was in a puzzle at every step of developing this program, literally! And I am proud that I could solve them all, without any help, myself. The program should be able to zip or unzip any type of file, But can only make a text file smaller. | |
**/ | |
#include <stdio.h> | |
#include <iostream> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Developer: Minhas Kamal | |
* Date: August.2013 | |
* Comment: Sorts the containing integers of a file using Quick Sort. The file format is as follows. | |
**/ | |
///FileFormat | |
/* | |
100 //number of integers | |
19 34 29 67 37 90 99 89 45 56 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Developer: Minhas Kamal (BSSE-0509, IIT, DU) | |
* Date: Aug-2013 | |
**/ | |
#include <stdio.h> | |
#include <time.h> | |
int main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Developer: Minhas Kamal (BSSE-0509, IIT, DU) | |
* Date: 15.Aug.2014 | |
* Comment: I spent a whole day doing this little code! But it was really fun! | |
**/ | |
#include <stdio.h> | |
#include <windows.h> | |
#include <time.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Developer: Minhas Kamal (BSSE-0509, IIT, DU) | |
* Date: 13.Nov.2013 | |
**/ | |
#include <iostream> | |
#include <fstream> | |
using namespace std; |
OlderNewer