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.

~344 People Reached
Favorite Forums
Favorite Tags
c++ x 5
Member Avatar for az-mi51

I have to make a multiplication table. The program works correctly but I need to put the numbers multiplied in the array also. EX. x 0 1 2 3 4 5 6 7 8 9 10 11 12 0 1 answers 2 3 4 5 6 7 8 9 10 …

Member Avatar for faroukmuhammad
0
120
Member Avatar for az-mi51

I am trying to multiply two single arrays and printing out a 2D array...basically I'm making a multiplication table. I keep getting SEGMENTATION FAULT error. Any suggestions? #include <stdio.h> #define COLUMN_SIZE 12 #define ROW_SIZE 12 #define SIZE 12 int main (void) { int i, j, k; int column[COLUMN_SIZE] = {1,2,3,4,5,6,7,8,9,10,11,12}; …

Member Avatar for az-mi51
0
224