C program without main

C program without main function : usually it is not possible and not even make sense to write a code without main function because program start executing from main. but for the sake of argument this can be done through MACROS.  i have not experienced...

C Program for this Pattern

54321 4321  321   21    1     CODE : #include <stdio.h> int main() {     int i, j;     for(i=5;i>=1;i--)     {         for(j=i;j>=1;j--)        ...

C Program for this Pattern

12345 2345  345   45    5     CODE :  #include <stdio.h> int main() {     int i, j;     for(i=1;i<=5;i++)     {         for(j=i;j<=5;j++)        ...

C Program for this Patters

12345 1234  123   12    1     CODE : #include <stdio.h>int main(){    int i, j;    for(i=5;i>=1;i--)    {        for(j=1;j<=i;j++)       ...

C Program for this Number Pattern

    5    54   543  5432 54321 CODE: int main() {   int i,j;   for(i=5;i>=1;i--)   {     for(j=1;j<i;j++)       printf(" ");     for(j=5;j>=i;j--)  ...

strcpy - String Copy

Code : #include <stdio.h> #include <stdlib.h> void xstrcpy(char str[100],char str1[100]); void main() {     char arr[100],arr1[100];     printf("Enter string ");     gets(arr);     xstrcpy(arr,arr1); } void...

String to Lower Case

CODE : #include<stdio.h> void main() {     int i=0,j=0, length;     char str[100];     printf("Enter string : ");     gets(str);     for(i=0; str[i]!='\0';i++)     {}    ...
Older Posts
© Copyright 2025 Encyclopedia of C | Designed By Code Nirvana
Back To Top