Write a program to show the effect of increment operator as postfix.

Written by Sharad Raj on 13th of March, 2018

BASIC PROGRAMS   C LANGUAGE PROGRAMS

PROGRAM CODE

#include<stdio.h>

#include<conio.h>

void main()

clrscr();

{
int a,z,x=10,y=20;

clrscr();

z=x*y++;

a=x*y;

printf(THE VALUE PF Z AND A ARE %d and %d,z,a);

getch();

}