Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Answer the following C program questions: A) What will this program print without running the code? #include int main (void) { int ref [

1. Answer the following C program questions:

A) What will this program print without running the code?

#include

int main (void)

{

int ref [ ] = {8, 4, 0, 2};

int *p;

int index;

for (index = 0, p = ref; index < 4; index++, p++)

printf ("%d %d ", ref [index], *p);

rerturn 0;

}

B) In question (A), ref is the address of what? What about ref +1? What does ++ref point to?

C) Waht will the following program print without running the code?

a)

int num [ ] = { 1, 2, 3, 4, 5, 6, 7, 8, 9}, *pnum = &num [2];

pnum++;

++pnum;

printf ("%d ", *pnum);

b)

int num [9] = {1, 2, 3, 4, 5, 6, 7, 8, 9}, *p;

p = num;

*( p + 1) = 0;

printf ("%d,%d,%d ", *p, p[1], (*p)++)

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

Pro SQL Server Administration

Authors: Peter Carter

1st Edition

1484207106, 9781484207109

More Books

Students also viewed these Databases questions

Question

KEY QUESTION Refer to columns 1 and 6 in the table for question

Answered: 1 week ago