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.
#include <stdio.h>
int main(void)
{
__int64 i=0;
i >>= 9;
if (i == 0)
printf("i is zero\n");
else
printf("i is not zero\n");
return 0;
}