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
Interests
All of the programming languages
PC Specs
4 GB Ram, 1GB Graphics Card, 1TB HDD, AMD Athelon 64x Dual Core Processor 2.11 GHz Windows 7 64 Bit
Favorite Forums
Favorite Tags
Member Avatar for Etniespr101

Hey guys, I am incredibly new to c++ and need a little help on a matrix multiplyer program... [code] #include <iomanip> #include <iostream> using namespace std; int main() { int **mat1; int **mat2; int **result; int row,col; cout<<"Please enter row/col"<<endl; cin>>row>>col; mat1 = new int *[row]; mat2 = new int …

Member Avatar for Musa_Jutt
-1
617
Member Avatar for skondgekar

# I have Written a code for sine function but it is not much accurate# I have written a code for PI() and sin() function but it is not much accurate I want to make it more accurate can anybody tell how can I make it more accurate. Also I …

Member Avatar for mike_2000_17
0
924
Member Avatar for alexa868

Hey guys, so I want to write a program that calculates the sinus, cosinus and tangent without using math library... Any ideas?

Member Avatar for mrnutty
0
346