Write statements as directed:
int a[]={1,2,3,4,5};
int *p;
p = a;
//Print the elements of array using the mentioned notation:
for (int i = 0; i < 5; i++)
{
//Subscript notation with name of array
//Subscript notation with pointer 'p'
//Offset notation using array name
//Offset notation using pointer 'p'
Answers
Answered by
2
nothing good at all error seen
Overview. A branch is an instruction in a computer program that can cause a computer to begin executing a different instruction sequence and thus deviate from its default behavior of executing instructions in order. Common branching statements include break , continue , return , and goto .
Similar questions
Biology,
3 hours ago
Computer Science,
6 hours ago
Social Sciences,
8 months ago
English,
8 months ago