No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
I compile this code on gcc compiler and get this error [CODE]error: lvalue required as left operand of assignment[/CODE] When you use & before a variable you are pointing to the variable address not the content of that so when you declare &n =m it seems meaningless because you are …
c is a pointer that point to a palace of memory and it self have address in memory.The content of the c is address of *c and content of *c is **c address.when you declare c= &a it means that the content of c is address of a pointer that …
Hello I write program that can solve linear equations with LUP decomposition method.I know that my algorithm is true and every part of my program do what I want. when I call function lupDecomposition() inside the lupSolve() the program crash.This is my related code: [CODE] int makeUpperDiagonal(Matrix * src){ int …
This code [CODE]int *ip;[/CODE] means that you declare a pointer that is going to pointing to a place of memory that contain integer value notice that you don't point anywhere until you set value for your pointer.if you want to change value of the pointer you should use * before …
you can write program that get data and store them in 3 kind of data structure.1- array 2- linklist 3-binary tree. you can find code for this 3 type of data structure in net easily.
Hello I am trying to write a matrix calculator but I have some problems.I use cofactor method for calculation.If you don't know the this method you can learn it here easily: [URL="http://paulbourke.net/miscellaneous/determinant/"]http://paulbourke.net/miscellaneous/determinant/[/URL] I use two function 1- GetMinor() 2- matrixCofactor() that the first one give me the minor matrix and …
The End.
keshvari