Can you please explain to me the error in this code?  #include void main()     {         int a[10]={1,2,3,4,5,6,7,8,9,10}, *p, *q;                  p=&a[1];         q=p-4;                  printf("%d",*q);         q=p-1;         printf("%d",*q);                  int *r;         r=&a[9];         int i=r-p;         int j=r+p;         printf("%d",i);                  printf("%d", p>r);         int n=9;                  int sum=0;                  for(p=&a[0]; p<=&a[9]; p++)         sum+=*p;                  printf("%d",sum);     }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.2: Array Initialization
Problem 1E: (Practice) Write array declarations, including initializers, for the following: a. A list of 10...
icon
Related questions
Question

Can you please explain to me the error in this code? 

#include<stdio.h>

void main()
    {
        int a[10]={1,2,3,4,5,6,7,8,9,10}, *p, *q;
        
        p=&a[1];
        q=p-4;
        
        printf("%d",*q);
        q=p-1;
        printf("%d",*q);
        
        int *r;
        r=&a[9];
        int i=r-p;
        int j=r+p;
        printf("%d",i);
        
        printf("%d", p>r);
        int n=9;
        
        int sum=0;
        
        for(p=&a[0]; p<=&a[9]; p++)
        sum+=*p;
        
        printf("%d",sum);
    }

Expert Solution
steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Knowledge Booster
Hiring Problem
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning