-->

Facebook

Jasper Roberts - Blog
Showing posts with label shorthand notation.. Show all posts
Showing posts with label shorthand notation.. Show all posts

Thursday, February 26, 2015

Write a C Program which explaining Shorthand Notations.

// 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);