Chapter 13 Exercise E | Example of Arrays and Pointers in C
Duration: 9:20 Min | Sep 10, 2023
This lecture from Let us C solutions of Chapter 13 Exercise E discusses some examples based on arrays and pointers when manipulated using loops and increment decrement operators to produce desired outcomes.
Let us C Ch13 Arrays Exercise E (a)
int main( )
{
int b[ ] = { 10, 20, 30, 40, 50 } ;
int i ;
for ( i = 0 ; i less than = 4 ; i++ )
printf ( "%d\n" *( b + i ) ) ;
return 0 ;
}