fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a;
  5.  
  6. printf("price of product : ");
  7. scanf("%d",&a);
  8. printf("menu price is %d",a);
  9. }
Success #stdin #stdout 0s 5264KB
stdin
Standard input is empty
stdout
price of product  : menu price is 0