
#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() {
int i, nextTerm;
int t1 = 2, t2 = 2;
nextTerm = t1+t2;
printf("%d, %d, ", t1, t2);
for (i = 3; i <= 10; ++i) {
printf("%d, ", nextTerm);
t1 = t2;
t2 = nextTerm;
nextTerm = t1 + t2;
}
return 0;
}
1 Thanks
2 Answers
2 Thanks
2 Answers

0 Claps
0 Comments
3:00 AM
25th Sept, 2022
THE MOST DRAMATIC BIRTHDAY IN MY LIFE
I have no idea how do I start....well its my birthday today.
I was never a boy who used to wake up midnight to check out who wished me. It was only since last year I became this.....the only reason I had woken up last year midnight for my birthday was to see if my someone then(now everything) actually makes out the promise she made.
[if you didn't get it, go throughhere]. And...
1 Clap
1 Comments
II)Cr2+ is reducing agent as its configuration changes from d4 to d3, when it is oxidized to Cr3+ .The d3 configuration have a half-filled t2g level which is very stable. On the other hand, the reduction of Mn3+ to Mn2+ results in the half-filled (d5) configuration which has extra stability hence Mn3+ acts as oxidizing agent.
0 Thanks
3 Answers