जॉइन Examsbook
1122 0

प्र: There is a mistake in the following code. Add a statement in it to remove it. main() {      int a;      a = f (10, 3.14) ;      printf ( " %d ", a ); } f (int aa, float bb) {     return ( ( float ) aa + bb ); }

  • उत्तर देखें
  • Workspace

उत्तर :
व्याख्या :

Add the following function prototype in main (): float f ( int, float );

क्या आपको यकीन है

  त्रुटि की रिपोर्ट करें

कृपया संदेश दर्ज करें
त्रुटि रिपोर्ट सफलतापूर्वक जमा हुई