Get Email Subscription

Enter your email address:

Delivered by FeedBurner

Thursday, February 4, 2010

Write the Output for the following program in c



#include<stdio.h>
void main( )
{
int i, j;
for (i=1, j=2; i < 5; i++, j++)
{
printf("i = %d \t j = %d \n" , i, j);
}
}

















Output

i=1
j=2
i=2
j=3
i=3
j=4
i=4
j=5

Related Posts by Categories



0 comments:

About This Blog

Lorem Ipsum

  © Blogger templates Newspaper III by Ourblogtemplates.com 2008

Back to TOP