Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
float myArray[1000] ;
struct {
float f ;
char *str ;
} myStruct ;
main() {
pthread_create(&id, threadMain....) ;
myArray[ 23 ] = 3.14159 ;
myStruct.f = 2.71828189 ;
}
threadMain() {
myArray[ 24 ] = 3.14159/2.0 ; /* I can access them here too */
myStruct.f += 1.0 ;
}