//Why are recursions?
REINVENT US
Hello Folks Here we are to help you. you can watch videos and get information about:- (1) Computer Programming (2) scientific facts (3) education (4) gaming and many more. So keep watching keep learning. Thank you.
Saturday, 1 January 2022
Recurtions
Wednesday, 22 December 2021
function
// functions are besic tools by using them we will be able to
break our programme in small segments.
Saturday, 18 December 2021
typecasting
// what typecasting is?
go to statement
obstacle statements:
continue, break and goto statements are obstacles use to terminate our programme.
1.continue statement me only aapka continue ke bad ka code jo loop me he execute nhi oga baki pahle ke loop ka code tab tak execute hoga jab tak loop ki condition false na ho jaye.
2.break statement ka use karne par code jese hi break statement ko reach karega vo break statement jis corresponding loop me hoga usko terminate kar dega.
3.goto statement is also known as the ultimate obstacle, jese hi code goto statement ko reach karga sabhi corresponding loops ko break karke out of loop dal dega.
// go to statement as its name it calls our programme to go
where it (go to statement) tells to go.
Friday, 17 December 2021
break & continue
// break statements are used to bring the program out of the loop.
Monday, 13 December 2021
for loop
// why use for loop?
while loop
// whlie loop is almost similar to "do whlie loop".
do-while loop
// do whlie loop at ek bar to execute hota hi he.
Sunday, 12 December 2021
loops
// why do we make a program and do all those coding stuff?
Saturday, 11 December 2021
switch statement
// besically switch case statement is a conviniance stuff for user.
Recurtions
//Why are recursions? //We can solve difficult long iteratively can be solved simply recursively. // there are some problems which suite...