+ 1
Please tell me problem in this code .
Thank to all who Will help me . I checked all things but couldn't find . https://code.sololearn.com/cY8RIF808DuE/?ref=app
4 Respuestas
+ 4
You're missing variable a in printf()
+ 1
You're using a format specifiar(%d) in printf(). But, it doesn't have another argument to replace it.
It needs to be like this
printf("number given by you is %d\n",a) ;
+ 1
Ok thank you sir . Now i start follow you . 🤗 You are great person ☺️ .
0
Means ? what variable ? in which line ?