Friday, March 28, 2014

Preincrement and Postincrement

#include<stdio.h>
#include<stdlib.h>
void line()
{
int i,j;
printf("\n");
for(i=1;i<=42;i++)
printf("=");
}
void header()
{
printf("\n");
printf("Built and Designed by Arslan Malik\n\n www.CworldbyAS.blogspot.com");
printf("\n");
}
int main()
{
line();
header();
line();

int c;
c=5;
printf("\n%d",++c);
c=5;
printf("\n%d\n",c++);

return 0;
}

No comments:

Post a Comment