Posts
 
Reputation
Joined
Last Seen
Ranked #960
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags
c++ x 4
c x 3
Member Avatar for kilon666

Here's the thing I want to compile this program in c using the GUI environment, but it isn't working out. I know that you can make a new project with windows32 GUI but it still isn't 'getting' the custom library. Am I missing something like linking the library somewhere else? …

Member Avatar for kilon666
0
199
Member Avatar for kilon666

I want to read data from a file with the following information: -An integer n (between 1 and 5) -n Rows of n integers Example: [CODE]3 8 1 6 3 5 7 4 9 2[/CODE] Which means displaying a 3x3 matrix with the numbers 8 through 2 each in a …

Member Avatar for Ancient Dragon
0
138
Member Avatar for kilon666

I'm working on a program to write chemical reactions a certain way from a file, calculate the mass and check whether they are conserved. I have this code so far: [CODE]#include <iostream> #include <fstream> #include <string> #include <sstream> using namespace std; #define INDEX_H 0 #define INDEX_B 1 #define INDEX_C 2 …

Member Avatar for kilon666
0
110
Member Avatar for kilon666

I want to find the determinant of a square 4x4 matrix using a minor and cofactor. And I want those in three seperate functions where i is the number of rows and j is the number of columns: [CODE]double minor(double a[][4], int row, int column);[/CODE] Done by removing a row …

Member Avatar for sfuo
2
4K