User profile: saurav2031

User info
User name:saurav2031
Name:saurav
Location:India
Bio:--------
History
Joined:
Number of posts:7
Latest posts:

A Program to compare two contents of files
For opening desktop files, you have to give its exact path(eg. in case of Windows 7 the path may be ...

Tower of Hanoi
1) u r calling move_rings(3, ...) from main 2) This goes to the else case of move_rings and calls mo...

A Program to compare two contents of files
i am sorry, it is to be replaced with if (paragraph1[i]!=toupper(paragraph2[i])) { compatible=false;...

A Program to compare two contents of files
replace if (paragraph1[i]=!toupper(paragraph2[i])) compatible=false; cout<<"The two files are not c...

A Program to compare two contents of files
try changing if (paragraph1[i]=!toupper(paragraph2[i])) to if (paragraph1[i]!=toupper(paragraph2[i])...