What would be the output of the following program? #include<iostream> #include<conio.h> int main() {
int n=5,i,first=0,second=1,third; printf(result ”); printf(“%d %d”,first,second); for(i=2;i<=5;i++) { third=first+second; printf(“%d”,third); first=second; second=third; } getch();
}
Reveal answer
Fill a bubble to check yourself