Fibonacci series program in c language Get link Facebook X Pinterest Email Other Apps December 31, 2018 #include<stdio.h>#include<conio.h>void main(){ int i,a=0,b=1,c,n; clrscr(); printf("Enter the limits:"); scanf("%d",&n); for(i=1;i<=n;i++) { printf("%d ",a); c=a+b; a=b; b=c; } getch();} Get link Facebook X Pinterest Email Other Apps Comments AnonymousJanuary 18, 2019 at 2:35 AMSo simple thanks ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
React Native ios Splash Screen With Storyboard December 02, 2021 Your First screen looks like this in xcode import imageView to set background Image in splashn scren please add constraints Your screen looks like this Read more
react-native multiselect dropdown May 08, 2021 1. index.js file const [ salesPersonCount , setSalesPersonCount ] = useState ( 0 ); const [ salesPersonArray , setSalesPersonArray ] = useState ([]); const [ selectModalVisible , setSelectModalVisible ] = useState ( false ); return ( < MultiSelect selectModalVisible = { selectModalVisible } ... Read more
Write a program to compute Fahrenheit from centigrade (f=1.8*c +32) November 30, 2018 #include<stdio.h> int main() { float celcius, fahrenheit; printf("\nEnter temp in Celcius : "); scanf("%f", &celcius); fahrenheit = (1.8 * celcius) + 32; printf("\nTemperature in Fahrenheit : %f ", fahrenheit); return (0); } Read more
So simple thanks
ReplyDelete