Keywords in C Programming - Learn C Programming in 30 Days
auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for sig…
Lorem Ipsum has been the industry's standard dummy text.
auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for sig…
C Program to Find Substring Of String Without Using Library Function #include<stdio.h> #include<string.h> int search(char[], char…
C Program to Print the Double Pyramid Pattern #include<stdio.h> int main() { int i, j, k; int blank = 0; int lines = 6; c…
Program to copy the contents of one file into another using fgetc and fputc function #include<stdio.h> #include<process.h> void m…
C Program to Display same Source Code as Output #include<stdio.h> int main() { FILE *fp; char ch; fp = fopen(__FILE__, "…
C Program : Print All Arguments passed to C Program using Command Line. #include<stdio.h> int main(int args, char *argv[]) { int i = 0;…
Calender Program in C Programming Language : Display Day of the month #include<stdio.h> #include<conio.h> #include<math.h> …
C Program to Split an Array from Specified Position & Add First Part to the End #include <stdio.h> void main () { …
Bit Stuffing Program in C Programming #include<stdio.h> #include<conio.h> #include<string.h> void main() { int a[20],b…
C Program to Find Number of Characters and Words in a String #include <stdio.h> #include <string.h> main() { char str[50]; …
Program to count no of lines in a file. #include <stdio.h> int main() { FILE *fileptr; int count_lines = 0; char filechar…
C Program to delete n characters from a given postion in a string #include <stdio.h> #include <conio.h> #include <string.h> …
Program to insert element in the array. #include<stdio.h> #include<conio.h> void main() { int x[10]; int i,j,n,m,temp,key,…
Program to accept a sentence and reverse each word and print the sentence. #include<stdio.h> #include<string.h> main() { …
Program to print natural numbers upto N without using semi-colon. #include<stdio.h> #define N 10 int main(int num) { if(num <…
Program to sort string in dictionary order #include<stdio.h> #include<string.h> main() { int i,j; char str[10][50],temp[50…
Converting Float to String in C programming #include<stdio.h> void main() { float f=23.14; char c[50] ; sprintf(c,"%g",f)…