fork download
  1. /***************************************************
  2.  * Author : CS Developers
  3.  * Author URI: https://w...content-available-to-author-only...v.com
  4.  * Facebook : https://w...content-available-to-author-only...k.com/CSDevelopers
  5.  ***************************************************/
  6.  
  7. #include<stdio.h>
  8.  
  9. int main()
  10. {
  11. int num1, num2, num3;
  12.  
  13. printf(" Input number for num1, num2, num3 : ");
  14. scanf("%d %d %d", &num1, &num2, &num3);
  15.  
  16. printf("\n Num1 = %d", num1);
  17. printf("\n Num2 = %d", num2);
  18. printf("\n Num3 = %d\n\n", num3);
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
 Input number for num1, num2, num3 : 
 Num1 = 21989
 Num2 = 1022767136
 Num3 = 32766