Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Homework HelpRSS Feeds

Example of illustrating block of statement

Posted By: Gabriel Silva     Category: C Programming     Views: 1593

Example of illustrating block of statement.

Code for Example of illustrating block of statement in C Programming

#include <stdio.h>
main()
{        \\ Block 1
int  i = 10;    \\ A

{        \\ Block 2
int i = 0;        \\ B
for( i=0;i<2;i++)    \\ C
{
printf("value of i is %d\n",i);
}    \\ End of block 2
}    
printf("the value of i is %d\n",i);     \\ D
}    \\ End of block 1
  
Share: 


Didn't find what you were looking for? Find more on Example of illustrating block of statement Or get search suggestion and latest updates.

Gabriel  Silva
Gabriel Silva author of Example of illustrating block of statement is from Salvador, Brazil.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!