Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3.  
  4. void main(){
  5. int a[2][2],i,j;
  6. for(i=1;i<2;i++){
  7. printf("Enter the value of I: ");
  8. scanf("%d", &i);
  9.  
  10. for(j=1;j<2;j++){
  11. printf("Enter the value of j: ");
  12. scanf("%d", &j);
  13. }
  14. }
  15. printf("Total Number is %d",a);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement