File Programs

June 16, 2010

Assassins Creed 2 Offline Emulator Help

Filed under: Uncategorized — Tags: , , , , — admin @ 9:31 pm


This is an Working Emulator of Assassins Creed.. which helps you tho play the entire game without any internet connection… A CRACK IS AVAILABLE FOR ASSASSINS CREED 2—- NO EMULATOR NEEDED LINK: rapidshare.com PASSWORD: lord The video is for those who can’t understand how to work out the Emulator. I hope it will be useful… The emulator shown in the video is version 0.31 The values.vb file which is present in the server lets u play till 4 sequences… Now you can play the entire game(100% complete) ALL IMPORTANT LINKS FOR PLAYING ASSASSINS CREED 2 FULLY 1. link for uplay www.mediafire.com 2. link for latest emulator rs893.rapidshare.com 3. link for the final value www.mediafire.com or dormine’s values www.mediafire.com (Everything works 100% fine with the updated launcher given below) 4. link for ubisoft game launcher update www.mediafire.com 5. link for emulator running help www.youtube.com (THIS VIDEO) 6. link for PYTHON 2.6 www.filehippo.com 7. link for pyrocrypto 2.1.0 www.voidspace.org.uk 8. my save games for all missions of as2 with all feathers collected at the earliest www.mediafire.com ENJOY THE GAME GUYZ.. THE STORYLINE IS AMAZING.. I AM PLAYING FOR THE 10TH TIME… STILL NOT BORING…AMAZING GAME!! THANK U UBISOFT FOR YOUR GREAT GAME….

I'm eager to hear your comments...
  • Share/Bookmark

June 15, 2010

c program read from file help?

Filed under: Uncategorized — Tags: , , , , — admin @ 11:07 pm

so i’m supposed to write a c program that can read from a file i created with another c program. now, that file contains:
12.000000S
13.000000+
14.000000*

here’s my program that i have so far, i’m not really sure how to make it run, i keep on getting segmentation fault. i’m not sure if theres some sort of statement that will just keep on reading whats in the file until there’s nothing there. anyway… here’s the program (i apologize for the format of it, the tabs don’t come out on here)

# include
int main ()
{
float num, result;
int i;
char op;
FILE *ptr1;
fscanf(ptr1, “%f”, &num);
fscanf(ptr1, “%c”, &op);
switch(op)
{
case ‘S’:
result = num;
fprintf(ptr1, “\n%f\n”, result);
break;
case ‘*’:
result = result*num;
fprintf(ptr1, “\n%f\n”, result);
break;
case ‘+’:
result = result+num;
fprintf(ptr1, “\n%f\n”, result);
break;
case ‘-’:
result = result-num;
fprintf(ptr1, “\n%f\n”, result);
break;
case ‘/’:
result = result/num;
fprintf(ptr1, “\n%f\n”, result);
break;
default:
printf(”\n operator is not valid\n”);
}
fclose(ptr1);
return 0;
}

What are your thoughts on the subject?
  • Share/Bookmark

NEED HELP WITH LITTLE BROTHER C++ PROGRAM TO READ A TXT FILE. NOONE HAS BEEN ABLE SO FAR ON HERE. THANKS!!!?

Filed under: Uncategorized — Tags: , , , , , , , , , , , — admin @ 8:49 pm

ok it says.
Assuem that you are reading from a data file named progData11.txt which contains two lines. The first line contains the correct answers to a multiple choice test. Each answer is one of the letter A,B,C,D,E. The second line contains the answers of a test taker. Produce three lines of output. The first line is a list of correct ansers. The second is a list of the test taker’s answers. The third line is a list of + or – symbols. If a question is answered correctly, a + sign should be printed. If a question is answered incorrectly, a – sign should be printed. Also, the percentage of correct answers should be printed.

Ex.

(data file reads)

ABCDEABCDE
EDCBAEDCBA

(output)
A B C D E A B C D E
E D C B A E D C B A
- – + – - – - + – -

percentage correct = 20

[[[I really appreciate any tips, not asking for an entire program just something to get us started because I dont remember any of this stuff. Its a tough nut but if you think you can crack it have at it. thanks guys]]]

Post a comment below...
  • Share/Bookmark
Older Posts »