Displaying Source Code(s)
|
|
Memory Game
--------------------------------------------------------------------------------
Description : Host Enter word.This word is presented to the
guest for some time and then the guest has to enter the same
word.This is a simple game with extremely simple codes.
#include<iostream.h>
#include<conio.h>
int length(char ch[100])
{
int a=0;
while(ch[a]!='
|
|
|