Question: The declaration int * pi; defines the variable pi as a / an to / from . The declaration char name [ ]

The declaration int *pi; defines the variable " pi " as a/an
to/from
.
The declaration char name[]= "abc"; defines the variable " name " as a/an
Ugh
initialized with the sting
.
The declaration char *name = "abc"; defines the variable " name " as a/an
to/from
initialized with the
of the string constant
Given the declarations int a[3]; int *p;
the statement p=a; initializes the
p with the
of a[
the statement p=&a[1]; initializes the
p with the
The declaration int * pi; defines the variable "

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!