Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
Your lectures are easy to understand even by a average students sir. Thank you so much for this kind of lectures sir💐💐💐👏🏻👏🏻👏🏻
I think the logic of computing complex roots is not correct, we should get the absolute value of (d/2*a)
yes you are correct.if(Disc
@@pirate_solapuri i is there no need of -
keep up the good work ..
thanks sir
Great sir
Thank u 🌹🙏so much sir.
The imaginary part is(-b +- i sqrt(-Disc))/(2*a)
i wrote like below code#include #includeint main(){ int n,x;printf("choose a number");scanf("%d",&n);x=2;while(n%x!=0){ if(x>=(n-1)) { printf("%d is a prime",n); exit(0) ;} else x++;}printf("%d is not prime",n);}
Thank u somuch sir.
Sir, my compiler is telling "exit an undeclared variable" AT 25:42please help with that
exit(0);
You can use break;
@@RohitGupta-kh1mn Now I'm making projects.
Your lectures are easy to understand even by a average students sir. Thank you so much for this kind of lectures sir💐💐💐👏🏻👏🏻👏🏻
I think the logic of computing complex roots is not correct, we should get the absolute value of (d/2*a)
yes you are correct.
if(Disc
@@pirate_solapuri i is there no need of -
keep up the good work ..
thanks sir
Great sir
Thank u 🌹🙏so much sir.
The imaginary part is
(-b +- i sqrt(-Disc))/(2*a)
i wrote like below code#include
#include
int main()
{ int n,x;
printf("choose a number");
scanf("%d",&n);
x=2;
while(n%x!=0)
{ if(x>=(n-1))
{ printf("%d is a prime",n); exit(0) ;}
else
x++;
}
printf("%d is not prime",n);
}
Thank u somuch sir.
Sir, my compiler is telling "exit an undeclared variable" AT 25:42
please help with that
exit(0);
You can use break;
@@RohitGupta-kh1mn Now I'm making projects.