Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Tags
Member Avatar for legendarya49

For about the past month my Vista 32 bit student addition has been trying to format ever device I plug in weather it be a USB drive or an SD chip from a Camera or even my ipod. I know that this is not correct because I have tried all …

Member Avatar for legendarya49
0
79
Member Avatar for legendarya49

would anyone be able to help me convert this c function to an assembler function? Any help would be greatly appreciated thanks. [CODE]void load(char x[][1000], int collum, int row, char ln) { int i =0; int j =0; for( i = 0; i < row; i++ ) { for( j …

Member Avatar for legendarya49
0
75
Member Avatar for legendarya49

I'm trying to determine if the characters in the maze can escape, the characters are labeled by their initials except for D which is the door here is the input data: 11 13 7 10 XXXXXXXXXXXXX X JX AX X XXXX XXXXBX X X X SX X X X XXXX …

Member Avatar for jephthah
0
171
Member Avatar for legendarya49

11 13 7 10 XXXXXXXXXXXXX X JX AX X X XXXX XXXXBX XX X X SX X X X X XXXX XXX XXX X X X X XXXXXXXXX XX X X X X XXXXXX XXXX XX XL X XXXXXXXDXXXXX I would like to create a recursive function to recurse through …

Member Avatar for iamthwee
0
94
Member Avatar for legendarya49

This is the input that I am trying to load up the array with: 11 13 7 10 XXXXXXXXXXXXX X JX AX X X XXXX XXXXBX X X X SX X X X XXXX XXX X X X X X X X X XXXXXXXXX X X X X X XXXXXX …

Member Avatar for Ancient Dragon
0
179
Member Avatar for legendarya49

Does anyone know any good books for introduction to assembly? I have a class with it next semester and would like to get a head start.

Member Avatar for Singh001
0
138
Member Avatar for legendarya49

[code]#include <iostream> #include <time.h> #include <fstream> #define MAXSIZE 1000 #include <cstring> #include <string> using namespace std; class Students { public: string firstName; string lastName; string social; double gpa; Students() { firstName = "Adam"; lastName = "Wilson"; social = "000-00-0000"; gpa = 0.00; } Students(string newSocial, string newFirst, string newLast, double …

Member Avatar for legendarya49
0
131
Member Avatar for legendarya49

[code]#include <iostream> #include <time.h> #include <fstream> #define MAXSIZE 400000 #include <cstring> using namespace std; class Students { public: string firstName; string lastName; string social; double gpa; Students() { firstName = "Adam"; lastName = "Wilson"; social = "000-00-0000"; gpa = 0.00; } Students(string newSocial, string newFirst, string newLast, double newGPA) { …

Member Avatar for Ancient Dragon
0
126
Member Avatar for legendarya49

I'm am trying to write a program that will do the factorail of big numbers and yet i still can not figure out why it does not work. when i do the factorail of 5 i get 20 it should be 120 and i cant figure out where the bug …

Member Avatar for JRM
0
87
Member Avatar for legendarya49

the program gives me an infinite loop [code=c++] #include <iostream> #include <cmath> #include <iomanip> using namespace std; void loadScores( int [], int & ); double average( int [], int ); double deviation(int [], double, int ); void frequency( int [], int[], int, double, double); void sortScores(int [], int ); void …

Member Avatar for legendarya49
0
138