// 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...
https://onlinecourses.nptel.ac.in/noc20_cs75/preview https://whimsical.com/operating-system-cheatsheet-by-love-babbar-S9tuWBCSQfzoBRF5EDNinQ https://www.youtube.com/watch?v=vBURTt97EkA&list=PLBlnK6fEyqRiVhbXDGLXDk_OQAeuVcp2O https://www.youtube.com/watch?v=8xUESrjyj1c&list=PLEbnTDJ...
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 7 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@2770cb6
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-9 , Program-1 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@41936cd
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week-12 , Program-4 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@6197d16
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week-10 , Program-1 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@832fe86
Jul-Oct 2024 (12 week course) No. of credits recommended: 3 or 4 - Week 3 · sagnikkkkkkkk/NPTEL-Problem-Solving-Through-Programming-in-C@92a2742
/* Complete the program to print the string in reverse order using the function void reverse(char[], int, int); Use the printf statement as printf("The string after reversing is: %s\n", str1); You can use different variable also. */ int size; size = strlen(...