John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: CMPT 125 Practice Problems


CMPT 125 Basics of Coding in C Practice Problems

7

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <stdio.h>

void print_max_number(const int digits[], int n) {
	
	int digitCount[9] = {0, 0, 0, 0, 0, 0, 0, 0, 0};
	
	for (int i=0; i<n; i++) {
		int digit = digits[i];
		digitCount[digit]++;
	}
	
	for (int i=8; i>=0; i--) {
		while (digitCount[i] > 0) {
			printf("%d", i);
      digitCount[i]--;
		}
	}
	
}

int main() {
	const int arr[5] = {5, 2, 8, 4, 3};
	print_max_number(arr, 5);
	return 0;
}

9

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <string.h>

void reverse(char str[]) {
  int len = strlen(str);
  for (int i=0;i<len/2;i++) {
    int temp = str[i];
    str[i] = str[len-i-1];
    str[len-i-1] = temp;
  }
}

int main() {
	char string[] = "52843";
	reverse(string);
  printf("%s", string);
	return 0;
}

10


Backlinks


References:

Created:: 2021-10-23 14:27


Interactive Graph