React Native ios Splash Screen With Storyboard Get link Facebook X Pinterest Email Other Apps December 02, 2021 Your First screen looks like this in xcodeimport imageView to set background Image in splashn scren please add constraintsYour screen looks like this Get link Facebook X Pinterest Email Other Apps Comments
table in html code December 16, 2018 <html> <head> <title>my table</title> <head> <body> <center> <table border="2" cellspacing="1" width="400"> <tr> <th rowspan="2">id</th> <th colspan="4">Marks</th> </tr> <tr> <td><center>Maths</center></td> <td><center>Science</center></td> <td><center>Biology</center></td> <td><center>Chemistry</center></td> </tr> <tr> <td><center>1</center></td> <td><center>89</center></td> <td><center>82</center></td> <td><center>81</center></td> <td><center>78</center></td> </tr> <tr> <td><center>2</center></td> <td... Read more
Fibonacci series program in c language 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(); } 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
Comments
Post a Comment