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
~563 People Reached
Favorite Forums
Favorite Tags
c x 8
Member Avatar for newport

I'm trying to make a program that will ask the user to which file they want to sort, sort it, then output the sorted text into a user specified file. the text file will contain names and the program should make lowercase and uppercase letter the same. [CODE] #include<stdio.h> #include<stdlib.h> …

Member Avatar for jephthah
0
102
Member Avatar for newport

I'm working on a matrix addition/multiplication/transpose/inverse program and after entering the values of matrix A, I don't know how to call these values. [CODE] int setMatrixA(int r1, int c1, int i, int j){ printf(" Enter the number of rows:\n"); scanf("%d", &r1); printf(" Enter the number of columns:\n"); scanf("%d", &c1); for(i=0; …

Member Avatar for jephthah
0
98
Member Avatar for newport

I'm trying to make a program that converts octal numbers to decimal numbers. I know the concept is taking the %10 of the number to get the first digit, /10 the number then take the %10 to get the second digit and multiplying by increase powers of 8, but I …

Member Avatar for Narue
0
170
Member Avatar for newport

I'm trying to make a program that asks the user what he/she wants to do, but when invalid inputs are entered, the program does not tell the user right away. Also, the sentinel value does not work. Thanks. [code] #include <stdio.h> int main () { int selection; float sum, difference, …

Member Avatar for rhish.franks
0
193