Team ATCSep 16, 20201 min readPlaying With Characters | HackerRankUpdated: Sep 17, 2020Asked: Anonymously | Category: C#include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> int main() { char ch; char s[20], sen[100]; scanf("%c", &ch); scanf("%s", s); scanf("\n"); scanf("%[^\n]%*c", sen); printf("%c\n", ch); printf("%s\n", s); printf("%s\n", sen); return 0; }C26 views0 comments13
Asked: Anonymously | Category: C#include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> int main() { char ch; char s[20], sen[100]; scanf("%c", &ch); scanf("%s", s); scanf("\n"); scanf("%[^\n]%*c", sen); printf("%c\n", ch); printf("%s\n", s); printf("%s\n", sen); return 0; }
Highest Divisor - CodeChef Solution | AskTheCodeCodeChef Feb Long Challenge Solution - Highest Divisor in C | Ask The Code...You are given an integer N. Find the largest integer...more
Enormous Input Test - CodeChef Solution in C | AskTheCodeCodeChef Practice Problem Solution in C Programming...Ask The Code...The purpose of this problem is to verify whether the method...Read more
C Program to find a number having max sum of divisors & also its position in the arrayC Programming - AskTheCode | Write a C program display the number with maximum sum of divisors and its position in array...Ask The Code...