Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
2 Commented Posts
0 Endorsements
~835 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for shmay

//C++ class to get matrix elements as input from user class matrix_input { private: int nof_row,nof_column; int row_count,column_count; int nof_matrix; int **address; public: matrix_input(); int get_no_row(); int get_no_col(); int mat_elem_memalloc(); int getmatrix(); void show_matrix(); ~matrix_input(); }; #include "matrix_input.h" #include <iostream> using namespace std; // matrix_input::matrix_input() { nof_row=0; nof_column=0; row_count=0; column_count=0; …

Member Avatar for randomjokar
0
703
Member Avatar for viki_chennai

This is a singlylinked list code.This shows no error but while execution it shows singlylinkedlist.exe has encountered a problem and needs to close thanks in advance [code] #include "singlylinkedlist.h" #include <iostream> using namespace std; class singlylinkedlist //class for linkedlist { private: struct node //struct daclares the abstract data and link …

Member Avatar for Moschops
-1
132