Ha samajh gaya jaise taise tumhe bhai ye batana chahiye tha ki jo return a* hai woh Naya function call karke usme a ki value 1 minus karke pass karne ke baad jo uski return value aayegi usse a* se multiply karega. Bas yehi confuse ho rha tha bhencho a* multiply kis se hoga mujhe laga a-1 hokar a se hi multiply hoga magar bhai tumne ye chiz ek baar bhi mention nahi ki jitna mene notice kiya😢❤
bhai dekh gcc tera compiler h jiske through tera c ka code compile hota h or dekh usse agar tujhe download karna h to ye le iss bande ne bataya hua h kaise download karna h th-cam.com/video/kEEx31DQC2M/w-d-xo.htmlsi=b8K9sRG7ygQ8TAyD or agar ye link parr click nhi hora to search karr le Install & Configure VS Code With MinGW Compiler C/C++ Tutorial Hindi kyuki yaha batana muskil h ki kaise karna h sab kuch ...
Samajh agaya last mai bhai❤️👍
bc jab edit karra tha mujhe khud samjh nhi aara tha tu kaise samajh gaya... lol
Ha samajh gaya jaise taise tumhe bhai ye batana chahiye tha ki jo return a* hai woh Naya function call karke usme a ki value 1 minus karke pass karne ke baad jo uski return value aayegi usse a* se multiply karega. Bas yehi confuse ho rha tha bhencho a* multiply kis se hoga mujhe laga a-1 hokar a se hi multiply hoga magar bhai tumne ye chiz ek baar bhi mention nahi ki jitna mene notice kiya😢❤
Brain Fog Showing its effects
Fr... lol
Mere vs code me c chalta he nhi pura Semester online compiler me coding kiya
.
Ye mingw kya hota hai gcc kya hota hai
Mujhe bhi nahi pata lekin mene tutorial copy karke daaldiya apne pc mai harr ek step fir chal gaya
bhai dekh gcc tera compiler h jiske through tera c ka code compile hota h or dekh usse agar tujhe download karna h to ye le iss bande ne bataya hua h kaise download karna h
th-cam.com/video/kEEx31DQC2M/w-d-xo.htmlsi=b8K9sRG7ygQ8TAyD
or agar ye link parr click nhi hora to search karr le
Install & Configure VS Code With MinGW Compiler C/C++ Tutorial Hindi
kyuki yaha batana muskil h ki kaise karna h sab kuch ...
#include
int factorial(int a){
if(a == 0|| a==1 ){
return 1;
}
return a*factorial(a-1);
}
void helloworld(){
printf("hello baby doodh peelo");
helloworld();
}
int main(){
int n = 5;
helloworld();
}