0
Pls find the bug in my code
#include <stdio.h> int main() { int a = 15,b = 2; float quotient; quotient=(float)a/b; printf("the result is %f\n",qoutient); } https://sololearn.com/compiler-playground/c655RllhK9Qz/?ref=app
2 ответов
+ 3
Dayya ,
have a closer look to the spelling of the variable nane in the output line.
+ 1
Line 7: variable name is quotient
Line 8: Wrong variable name "quotient"