// C Program which explaining Shorthand Notations.
#include<conio.h>
#include<stdio.h>
void main()
{
int i;
clrscr();
printf("Enter the value of i:");
scanf("%d",&i);
i += 5;
printf("\n i = %d",i);
#include<conio.h>
#include<stdio.h>
void main()
{
int i;
clrscr();
printf("Enter the value of i:");
scanf("%d",&i);
i += 5;
printf("\n i = %d",i);