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
~2K People Reached
Favorite Forums

6 Posted Topics

Member Avatar for sydsine

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 …

Member Avatar for himgar
0
329
Member Avatar for hqt

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 …

Member Avatar for keshvari
0
145
Member Avatar for keshvari

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 …

Member Avatar for keshvari
0
132
Member Avatar for dotancohen

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 …

Member Avatar for keshvari
0
200
Member Avatar for little_bee

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.

Member Avatar for Adak
0
131
Member Avatar for keshvari

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 …

Member Avatar for keshvari
0
1K

The End.