We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int a;
double b;
char str[100],res[100];
scanf("%d",&a);
scanf("%lf",&b);
getchar(); //it is used to cosume previous newline from scanf
fgets(str,sizeof(str),stdin);
printf("%d\n",(a+i));
printf("%.1f\n",(b+d));
strcpy(res,s);
strcat(res,str);
printf("%s",res);
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 1: Data Types
You are viewing a single comment's thread. Return to all comments →
int a; double b; char str[100],res[100]; scanf("%d",&a); scanf("%lf",&b); getchar(); //it is used to cosume previous newline from scanf fgets(str,sizeof(str),stdin); printf("%d\n",(a+i)); printf("%.1f\n",(b+d)); strcpy(res,s); strcat(res,str); printf("%s",res);