Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week 7 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@2770cb6
Data Science (28) Science (451) Humanities (408) Engineering (480) Computer Science (135) Programming (40) Others (43)More CoursesIf you don’t find what you need in the course list below, browse Class Central‘s catalog of over 250k courses or visit our thematic collections:Massive...
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week 3 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@92a2742
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week 2 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@267ef5d
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week 12 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@57a9260
// Write a C program to sort a 1D array using pointer by applying Bubble sort technique.#include<stdio.h> void sort(int *a, int n); int main() { int a[20]; int n,i; scanf("%d",&n); // Enter number of elements to sort is taken from test case data...
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week-7 , Program-4 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@1d3a370
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week 6 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@44da5c7
for (c = 0; c < n; c++) { if (array[c] == search) { printf("%d is present at location %d.\n", search, c+1); count++; } } if (count == 0) printf("%d is not present in the array.\n", search); else printf("%d is present %d times in the array...
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week-10 , Program-3 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@1101a84