A solved exercise
This program combines dereferencing, pre- / post- increment and assignment operations. Try figuring out the output yourself first before reading the output and explanation.
Program:
#include <stdio.h>
int main()
{
int A[] = {10, 20, 30, 40, 50};
in...
kaustubhk.hashnode.dev2 min read