C Program showing to shC Program showing example of short hand operator

C Program showing example of short hand operator


#include

main( )
{
int a,b,c,d;
printf("ENTER VALUES OF a,b, c, d");
scanf("%d%d%d",&a,&b,&c);
a += b*c+d;
printf("\n a = %d",a);
}


No comments:

Post a Comment