top of page
Coding Solutions is a great section for every coder. You can get answers to your programming questions here by the Team ATC. You can even ask for the answer to competitive programming language questions as well. First, search your question here, and if not found. Then, ask your question to Ask The Code members, and you will get your answer in no time from the members of this Indian Developer Community. Happy Coding.
Search


WAP to Implement Matrix Chain Multiplication in C - AskTheCode
Write a C program to display the required minimum number of multiplicative operations for multiplying the given matrices...
Team ATC
Jul 15, 20213 min read
37 views
0 comments
Small Triangles Large Triangles - HackerRank Solution in C | AskTheCode
You are given n triangles, specifically their sides ai, bi & ci. Print them in the same style but sorted by their areas from the smallest...
Team ATC
Jun 30, 20212 min read
90 views
0 comments
David is fighting Goliath (again) - MOOC assignment from Edx solution
Write a program that takes several lines of input from a user (see the below example). The first line of the input indicates the number ...
Team ATC
Jun 24, 20212 min read
66 views
0 comments
Highest Divisor - CodeChef Solution | AskTheCode
CodeChef Feb Long Challenge Solution - Highest Divisor in C | Ask The Code...You are given an integer N. Find the largest integer...more
Team ATC
Feb 15, 20211 min read
215 views
0 comments
Enormous Input Test - CodeChef Solution in C | AskTheCode
CodeChef Practice Problem Solution in C Programming...Ask The Code...The purpose of this problem is to verify whether the method...Read more
Team ATC
Feb 11, 20211 min read
48 views
0 comments
C Program to find a number having max sum of divisors & also its position in the array
C Programming - AskTheCode | Write a C program display the number with maximum sum of divisors and its position in array...Ask The Code...
Team ATC
Jan 7, 20211 min read
40 views
0 comments
C Program To Add Two User Given Polynomials
C program to add two polynomials | Ask The Code C Program to find the result of addition of two given polynomials by the user...Read more...
Team ATC
Dec 29, 20201 min read
35 views
0 comments
Count Vowels in a String in C | AskTheCode
C program that gives total number of vowels present in a string...str[100]; int c = 0, count = 0; printf("Enter the string: ")...AskTheCode
Team ATC
Dec 8, 20201 min read
40 views
0 comments
What is stack in C | Data Structure
Stack is a linear data structure in C following 'First In Last Out' or 'First In Last Out' order. It has Push(), Pop(), Peek() functions.
Team ATC
Nov 24, 20201 min read
39 views
0 comments
Take marks as input in Linked List & Display the highest & smallest marks
Linked List | Data Structure Post #include<stdio.h> #include<stdlib.h> struct stud { int marks; struct stud *next; }; typedef struct stud...
Team ATC
Sep 23, 20201 min read
23 views
0 comments
Delete an element at a Specified Position in a given Array
Random Post #include<stdio.h> int insert(int [], int, int); int main() { int i,n,num,pos; printf("Enter the number of elements: ");...
Team ATC
Sep 18, 20201 min read
16 views
0 comments
Insert an element at a Specified Position in a given Array
Random Post #include<stdio.h> int insert(int [], int, int, int); int main() { int i,n,num,pos; int arr[30]; printf("Enter the number of...
Team ATC
Sep 18, 20201 min read
12 views
0 comments
Max Min function in C
Random Post #include <stdio.h> int Max(float arr[],int n) { float maximum=-999999.99; for (int i = 0; i < n; i++) { if (arr[i]>maximum) {...
Team ATC
Sep 18, 20201 min read
10 views
0 comments
Bubble Sorting in C
Random Post #include<stdio.h> void swap(int *m,int *n){ int temp=*m; *m=*n; *n=temp; } void bubbleSort(int arr[],int n){ int i,j; for(i =...
Team ATC
Sep 18, 20201 min read
8 views
0 comments
Selection Sorting in C
Random Post #include<stdio.h> void swap(int *m,int *n){ int temp=*m; *m=*n; *n=temp; } void seletionSort(int arr[],int n){ int i, j, min;...
Team ATC
Sep 18, 20201 min read
5 views
0 comments
Insertion Sorting in C
Random Post #include<stdio.h> void swap(int *m,int *n){ int temp=*m; *m=*n; *n=temp; } void insertionSort(int arr[],int n){ int...
Team ATC
Sep 18, 20201 min read
13 views
0 comments
Playing With Characters | HackerRank
Asked: Anonymously | Category: C #include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> int main() { char ch; char...
Team ATC
Sep 16, 20201 min read
29 views
0 comments
Sum of Digits of a Five Digit Number | HackerRank
Asked: Anonymously | Category: C #include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> int main() { int n;...
Team ATC
Sep 16, 20201 min read
10 views
0 comments
1D Arrays in C | HackerRank
Asked: Anonymously | Category: C #include <stdio.h> #include <stdlib.h> int main() { int n, *arr, i, sum = 0; scanf("%d", &n); arr =...
Team ATC
Sep 16, 20201 min read
9 views
0 comments
bottom of page