Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Declare a char array called alpha, and initialize it to the string ABCDEFGHIJKLMNOPQRSTUVWXYZ. In your declaration, make the alphabet array read - only, so none

image text in transcribed

Declare a char array called alpha, and initialize it to the string "ABCDEFGHIJKLMNOPQRSTUVWXYZ". In your declaration, make the alphabet array read - only, so none of the letters in the array can be changed later in the program. Given a char pointer called ptr (i.e. char * ptr) and the alpha array declared in problem (1) above, make ptr point to the letter 'D' in the alpha array (i.e. set ptr to the memory address where 'D' is stored). What's wrong with the code below? (Circle the line with the error, and describe the error) int * int_ptr; int primes [] = {2, 3, 5, 7}; int composite [] = {4, 6, 8, 9}; int_ptr = primes; composite = int_ptr; Pointers enable passing variables to functions by: A. Pass by value B. Pass by reference C. Pass by number D. Pass by operator What is printed to the screen by the code below? int number [] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}; for (int i = 1; i

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Modeling And Design

Authors: Toby J. Teorey, Sam S. Lightstone, Tom Nadeau, H.V. Jagadish

5th Edition

0123820200, 978-0123820204

More Books

Students also viewed these Databases questions