Advertisement
Phyo_Wai

Decision Making Example

Apr 2nd, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. //Tutorialpoint.com/cprogramming/website
  2. #include<stdio.h>
  3. #include<conio.h>
  4. int main()
  5. {
  6.     int a = 10;
  7.     if (a<20)
  8.     {
  9.         printf("a is less than 20\n");
  10.     }
  11.     printf("value of a is : %d\n",a);
  12.  
  13.     _getch();
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement