#include <iostream>
using namespace std;
int age = 21;
void add() {
cout << "Age: " << age << endl;
}
int main() {
add();
return 0;
}
Error: variable age is not local to the function โ ๏ธ
This one is also possible โ
#include <iostream>
using namespace std;
int age = 21;
void add();
int main() {
add();
return 0;
}
void add() {
cout << "Age: " << age << endl;
}
Output: 21 ๐
@ProgrammingWithFaith2018
โค2๐ฅฐ2
To register for the premium class, ๐ [@ProgrammingWithFaith_bot] ๐
โค2
To register for the premium class, ๐ [@ProgrammingWithFaith_bot] ๐
Hit any reaction if this channel is helping you ๐
โค4๐ฅฐ2๐2โก1๐ฅ1๐1๐ณ1
I was monetizing this channel, so sometimes you will see ads. ๐๐๐ ๐
@ProgrammingWithFaith2018
@ProgrammingWithFaith2018
โค3๐ฅ1๐1
To register for the premium class, ๐ [@ProgrammingWithFaith_bot] ๐
This media is not supported in your browser
VIEW IN TELEGRAM
๐จโ๐ป๐จโ๐ป๐จโ๐ป๐จโ๐ป๐จโ๐ป๐จโ๐ป๐จโ๐ป๐จโ๐ป๐จโ๐ป
แตแ Compilation แฅแ Interpretation แญแ แแฅ แแแจแณแต แจแแญ แซแแแ video แฐแแแจแฑแข
To register for the premium class, ๐ [@ProgrammingWithFaith_bot] ๐
@ProgrammingWithFaith2018
แตแ Compilation แฅแ Interpretation แญแ แแฅ แแแจแณแต แจแแญ แซแแแ video แฐแแแจแฑแข
To register for the premium class, ๐ [@ProgrammingWithFaith_bot] ๐
@ProgrammingWithFaith2018
โค3
Media is too big
VIEW IN TELEGRAM
To register for the premium class, ๐ [@ProgrammingWithFaith_bot] ๐
โค4๐ฅฐ1
โ แแแแ แจแญแญแตแตแ แฅแแแต แฐแจแณแฎแฝ แฅแแณแ แแแณแฝแ แแแตแแแณแฝแ
แแขแจแฑแต แญแญแตแถแต แจแตแ แแต แ แแ
แ แฐแแ แ แฐแจแณแฝแ!
@ProgrammingWithFaith2018
แแขแจแฑแต แญแญแตแถแต แจแตแ แแต แ แแ
แ แฐแแ แ แฐแจแณแฝแ!
@ProgrammingWithFaith2018
โค6๐ฅ1๐1
๐ฉโ๐จApplied mathematics one ๐
Derivative Question โ
Let F(x)=f(2(g(x))) f(x)=x^4+x^3+1; 0<=x<=3
find F'(3)=? ๐งฎ
Hint: ๐ก
g(x)=inverse of f(x) ๐
@ProgrammingWithFaith2018
Derivative Question โ
Let F(x)=f(2(g(x))) f(x)=x^4+x^3+1; 0<=x<=3
find F'(3)=? ๐งฎ
Hint: ๐ก
g(x)=inverse of f(x) ๐
@ProgrammingWithFaith2018
โค2๐ฅฐ1
โฅApplied ๐
Derivative of inverse csc functions. ๐
Y=cscโปยน(secx) find dy/dx? ๐ค
Hint:
cscโปยน means inverse of csc ๐ก
@ProgrammingWithFaith2018
Derivative of inverse csc functions. ๐
Y=cscโปยน(secx) find dy/dx? ๐ค
Hint:
cscโปยน means inverse of csc ๐ก
@ProgrammingWithFaith2018
โค1๐ฅ1
C++ Basic 2018 (Batch-2)
๐ฉโ๐จApplied mathematics one ๐ Derivative Question โ Let F(x)=f(2(g(x))) f(x)=x^4+x^3+1; 0<=x<=3 find F'(3)=? ๐งฎ Hint: ๐ก g(x)=inverse of f(x) ๐ @ProgrammingWithFaith2018
โ
Explanation๐จ๐ฝโ๐ผ
Hint:
(fโป)(x)=g(x)
f(a)=c ,(fโป)'(c)=1/f'(a)
So, c=3 a=?
f(a)=a^4+a^3+1=3
a^4+a^3-2=0
a=1
f(1)=3
g(3)=(fโป)(3)=1
g'(3)=(fโป)'(3)=1/f'(1)=1/7
then,
F'(3)=2f'(2g(3))*(g'(3))
=2f'(2)*(1/7)
=88*1/7
=88/7
@ProgrammingWithFaith2018
Hint:
(fโป)(x)=g(x)
f(a)=c ,(fโป)'(c)=1/f'(a)
So, c=3 a=?
f(a)=a^4+a^3+1=3
a^4+a^3-2=0
a=1
f(1)=3
g(3)=(fโป)(3)=1
g'(3)=(fโป)'(3)=1/f'(1)=1/7
then,
F'(3)=2f'(2g(3))*(g'(3))
=2f'(2)*(1/7)
=88*1/7
=88/7
@ProgrammingWithFaith2018
โค3
C++ Basic 2018 (Batch-2)
โฅApplied ๐ Derivative of inverse csc functions. ๐ Y=cscโปยน(secx) find dy/dx? ๐ค Hint: cscโปยน means inverse of csc ๐ก @ProgrammingWithFaith2018
โ
Explanation
Hint:(cscโป^1)'=
-f'(x) / f(x)sqrt((f(x)^2+1))
=-(secx)'/secx sqrt((secx)^2+1))
=-(-tanx secx) / secx sqrt(sec^2+1)
=tanx secx / secx tanx
=1
@ProgrammingWithFaith2018
Hint:(cscโป^1)'=
-f'(x) / f(x)sqrt((f(x)^2+1))
=-(secx)'/secx sqrt((secx)^2+1))
=-(-tanx secx) / secx sqrt(sec^2+1)
=tanx secx / secx tanx
=1
@ProgrammingWithFaith2018
โค4
applied1_bagashaw_maltot-1.pdf
105.3 MB
โก๏ธApplied Math I - Begashaw
โ Applied Math แฎแญแต แแแตแแตแฑ แฐแแชแแฝ แ แฃแ แแณแ แจแแ แ แแฅ แแ แแ แแแข แ แฅแแแแ แแ แแฐแ แจแแแฃแ แต แฅแแฒแแ Conceptแฆแฝแ แ แฐแแฅ แแแ แ แตแญแ แจแแซแฅแซแซ แแแข
@ProgrammingWithFaith2018
โ Applied Math แฎแญแต แแแตแแตแฑ แฐแแชแแฝ แ แฃแ แแณแ แจแแ แ แแฅ แแ แแ แแแข แ แฅแแแแ แแ แแฐแ แจแแแฃแ แต แฅแแฒแแ Conceptแฆแฝแ แ แฐแแฅ แแแ แ แตแญแ แจแแซแฅแซแซ แแแข
@ProgrammingWithFaith2018
โค3