Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
#include <stdio.h>
#include <string.h>
int main()
{
char a[100];
int length;
printf("İsminizi giriniz:");
gets(a);
length = strlen(a);
for(int i = 0; i < length; i++)
printf("*");
return 0;
}