Channel
Updated: 2026-07-31
144. Circular Link List. #include<stdio.h> #include<stdlib.h> typedef struct Node { int data; struct Node next; } node; void insert(node pointer, int data) { node start = pointer; …
143. Program to allocate memory using malloc() and free memory using free(). #include<stdio.h> #include<stdlib.h> int main() { int n, i, ptr, sum = 0; printf("Enter total number of…
142. Program to concatenate two strings using pointer. #include <stdio.h> void concatenator(char str, char substr) { while (*str) str++; while (*substr) { str = substr; substr++; s…
141. WAP to multiply and add two complex numbers Input : 5 -4 4 6 Output : Sum is 9 + 2i Product is 44 + 14i #include<stdio.h> #include<conio.h> typedef struct { int real; int imag…
140. Program to find day on a particular date #include<stdio.h> int isLeapYear(int year){ if(year%4==0){ if(year%100==0 && year%400!=0){ return 0; } else{ return 1; } } e…
No ads indexed yet.
This channel was added to our crawler but no sponsored impressions have surfaced yet. Subscribe below — we will ping you on the first hit.
Tracked since 2026-06-19 · first ad check queued
139. Program to read multiline string using scanf. #include<stdio.h> int main(void) { char str[100]; // reading multline string with '.' as a delimiter scanf("%[^.]",str); printf("…
138. Program to split words from a string using strtok function. #include <stdio.h> #include<string.h> int main(void) { char str[]="Welcome to C language"; char token=strtok(str," …
137. Program to check whether the number is palindrome or not using recursion. #include<stdio.h> int checkPalindrome(int); int main() { int n, sum; printf("Enter a number : "); sca…
This channel will serve you programs of C language. Admin : @jenishsoni Useful channels : @c_channels @decode_c @pyguru