Purpose: Learn how to use array in C. Understand the basic memory address in C.

$24.99 $18.99

Part 1: Write a C program named as getMostFreqChar.c that finds the most frequent letter from the input via ignoring the case sensitive and prints out its frequency. For example, sample outputs could be like below $cat test.txt This is a list of courses. CSC 1010 – COMPUTERS & APPLICATIONS $./getMostFreqChar test.txt The most frequent…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)

Part 1:

Write a C program named as getMostFreqChar.c that finds the most frequent letter from the input via ignoring the case sensitive and prints out its frequency. For example, sample outputs could be like below

$cat test.txt

This is a list of courses.

CSC 1010 – COMPUTERS & APPLICATIONS

$./getMostFreqChar test.txt

The most frequent letter is ‘s’. It appeared 8 times.

Run the C program, attach a screenshot of the output in the answer sheet.

Part 2:

When a variable is stored in memory, it is associated with an address. To obtain the address of a variable, the & operator can be used. For example, &a gets the memory address of variable a. Let’s try some examples.

Write a C program addressOfScalar.c by inserting the code below in the main function.

Questions:

  1. Run the C program, attach a screenshot of the output in the answer sheet.

  1. Attach the source code in the answer sheet

2) Then explain why the address after intvar is incremented by 4 bytes instead of 1 byte.

1 // intialize a char variable, print its address and the next address

  • char charvar = ‘\0’;

  • printf(“address of charvar = %p\n”, (void *)(&charvar));

  • printf(“address of charvar – 1 = %p\n”, (void *)(&charvar – 1));

5 printf(“address of charvar + 1 = %p\n”, (void *)(&charvar + 1));

6

  • // intialize an int variable, print its address and the next address

  • int intvar = 1;

  • printf(“address of intvar = %p\n”, (void *)(&intvar));

  1. printf(“address of intvar – 1 = %p\n”, (void *)(&intvar – 1));

  2. printf(“address of intvar + 1 = %p\n”, (void *)(&intvar + 1));

12

Part 3:

Write a C program addressOfArray.c by inserting the code below in the main function.

1 // initialize an array of ints

  • int numbers[5] = {1,2,3,4,5};

  • int i = 0;

4

5 // print the address of the array variable

6 printf(“numbers = %p\n”, numbers);

7

  • // print addresses of each array index

  • do {

  1. printf(“numbers[%u] = %p\n”, i, (void *)(&numbers[i]));

  1. i++;

  1. } while(i < 5);

// print the size of the array printf(“sizeof(numbers) = %lu\n”, sizeof(numbers));

Questions:

  1. Run the C program, attach a screenshot of the output in the answer sheet.

  1. Check the address of the array and the address of the first element in the array. Are they the same?

  1. Write down the statement to print out the length of the array by using sizeof operator.

Submission:

Upload an electronic copy (pdf) of your answer sheet to the folder named “Lab 9” in Google Classroom

Please add the lab assignment number and your name at the top of your answer sheet.

Upload the C files getMostFreqChar.c, addressOfArray.c and addressOfScalar.c to the folder named named “Lab 9” in Google Classroom

Name your file in the format of Lab9_ FirstnameLastname (e.g Lab9_FilRondel.pdf)

Purpose: Learn how to use array in C. Understand the basic memory address in C.
$24.99 $18.99