Posts

Showing posts from March, 2020

source code of O alphabet pattern

Image
   code: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k; system("color F5"); for(i=0;i<=11;i++) { for(j=0;j<=2;j++) { if(i==0&&j<2||i==1&&j<2||i==11&&j<2||i==10&&j<1) { printf(" "); } else { printf("*"); } } for(k=1;k<=6;k++) { if(i>=0&&i<2||i>9&&i<=11) { printf("**"); } else { printf("  "); } } for(j=0;j<=2;j++) { if(i==0&&j>0||i==1&&j>1||i==11&&j>0||i==10&&j>1) { printf(" "); } else { printf("*"); } } printf("\n"); } getche(); } MORE Topics: 1-How to print Numeric Number with a star pattern in c, https://youtu.be/qG3iE0

heart pattern in c language

Image
  code: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int row,col; system("color 03"); // zero foe black and f for white for(row=0;row<=2;row++) {  for(col=1;col<=17;col++)  {   if(col>=3-row&&col<=6+row||col>=12-row&&col<=15+row)   printf("%c",1);   else   printf(" ");  }  printf("\n"); } for(row=0;row<9;row++)   {    for(col=1;col<=17;col++)    {    if(col>=row+1&&col<=17-row)    printf("%c",1);    else    printf(" ");   }   printf("\n");   } return 0; } MORE Topics: 1-How to print Numeric Number with a star pattern in c, https://youtu.be/qG3iE09BIwk 2-How to print Table with a star pattern in c, https://youtu.be/ALjlFK3CIwc 3-How to hack sim card, https://youtu.be/zseZl7_tmLI 4-How to print Heart

source code of n alphabet pattern in c language | AWC services

Image
   CODE: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k,l,m; system("color fc"); for(i=0;i<=11;i++) { for(j=0;j<=2;j++) { printf("*"); } for(k=1;k<=i;k++)     {     printf(" "); } for(j=0;j<=2;j++) { printf("*"); }      for(l=10;l>=i;l--)      {       printf(" "); } for(j=0;j<=2;j++) { printf("*"); } printf("\n"); } getche(); } MORE Topics: 1-How to print Numeric Number with a star pattern in c, https://youtu.be/qG3iE09BIwk 2-How to print Table with a star pattern in c, https://youtu.be/ALjlFK3CIwc 3-How to hack sim card, https://youtu.be/zseZl7_tmLI 4-How to print Heart with a star pattern in c, https://youtu.be/aAyaQ-52Ajk 5-How to print A alphabet pattern with Emoji and star pattern, https://youtu.be/Cyoz8VP6Rkw 6-Student database management

alphabet pattern for M in c language

Image
CODE: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k,l,m; system("color 0c"); for(i=0;i<=11;i++) { for(j=0;j<=2;j++) { printf("*"); } for(k=1;k<=i;k++)     {     printf(" "); } for(j=0;j<=2;j++) { printf("*"); } for(m=10;m>=i;m--) { printf("  "); } for(j=0;j<=2;j++) { printf("*"); } for(k=1;k<=i;k++) { printf(" "); } for(j=0;j<=2;j++) { printf("*"); } printf("\n"); } getche(); } MORE Topics: 1-How to print Numeric Number with a star pattern in c, https://youtu.be/qG3iE09BIwk 2-How to print Table with a star pattern in c, https://youtu.be/ALjlFK3CIwc 3-How to hack sim card, https://youtu.be/zseZl7_tmLI 4-How to print Heart with a star pattern in c, https://youtu.be/aAyaQ-52Ajk 5-How to print

tools and tips for fiverr gig ranling

Image
In this video, I’m going to show you, How To Create Effective Gig On Fiverr | AWC Services I will give you some tools and tips for Fiverr SEO. Because of Search engine optimization for the gig Rank your gig in 1st. Grammar correction is one of the most important things in the gig, link : https://chrome.google.com/webstore/detail/grammarly-for-chrome/kbfnbcaeplbcioakkpcpgfkobkghlhen?hl=en

Make a program to save data of students ,employ

Image
code: #include<stdio.h> #include<conio.h> #include<stdlib.h> #define NUM 3 int main() { FILE *fptr; int i,j; int age[5]; char name[5][20]; char group[5][20]; fptr=fopen("std.txt","a"); for(int i=0;i<NUM;i++)     {     printf("name: "); scanf("%s",&name[i]); printf("age: "); scanf("%d",&age[i]); printf("phone number:"); scanf("%s",&group[i]); } for(int i=0;i<NUM;i++) { fprintf(fptr,"Name:%s\n",name[i]); fprintf(fptr,"age:%d\n",age[i]); fprintf(fptr,"phone number:%s\n",group[i]);     } fclose(fptr); getche(); }

how to code of Alphabet L pattern

Image
CODE: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k; system("color 0a"); for(i=0;i<=11;i++) { for(j=0;j<2;j++) { printf("*"); } for(k=1;k<=5;k++)     {     if(i>9&&i<=11)     {     printf("**");     }      else{       printf("  ");//one space } } printf("\n"); } getche(); }

code of Alphabet K pattern

Image
code: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k,count=6; system("color 0f"); for(i=0;i<=11;i++) { for(j=0;j<2;j++) { printf("*");     }       for(k=0;k<=6;k++)   {            if(k==count)            {             printf("***");        }       else   {        printf("  ");//two spaces        }             }         if(i<=5)           {           count--;           }           else if(i<=11)            {       count++;            }    printf("\n"); } getche(); } 

alphabet pattern of j

Image
code: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j; system("color 0A"); for(i=0;i<=11;i++) { for(j=0;j<6;j++)         {       if(i>=0&&i<2||i>=2&&i<=9&&j==3||i>=7&&i<=9&&j==0||i>9&&i<=11&&j<=3)       {       printf("***");   }   else   {   printf("   ");//three spaces   }           }        printf("\n"); } getche(); } by awc services

how to hack ip adress program in c language

Image
code: #include<stdlib.h> main() { system("C:\\windows\\system32\\ipconfig>ip.txt"); } steps: copy code paste in dev++ press F11 then copy the program in USB then plugin USB in other computer and run program  then .txt file will be save in your USB

make H alphabet with stars in c

Image
code:                                                            FREE for 1 mounth ⇑ #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k; system("color 0d"); for(i=0;i<=11;i++) { for(j=0;j<2;j++) { printf("*"); } for(k=1;k<5;k++)         {       if(i>4&&i<7)       {       printf("**");   }   else   {   printf("  ");//two spaces   }           }   for(j=4;j<6;j++)       { printf("*");     }            printf("\n"); } getche(); }

G alphabet pattern in c language

Image
how to make G alphabet pattern in c language code: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k; system("color 0d"); for(i=0;i<=11;i++) { for(j=0;j<2;j++) { printf("*"); } for(k=1;k<=5;k++)     {     if(i>=0&&i<2||i>4&&i<7&&k>=3&&k<=5||i>=6&&i<=9&&k==5||i>9&&i<=11)     {     printf("**");     }      else{       printf("  ");//one space } } printf("\n"); } getche(); } steps: copy code and paste on dev++ press F11

how to code F alphabet pattren

Image
code F alphabet pattren CODE: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k; system("color 0a"); for(i=0;i<=11;i++) { for(j=0;j<2;j++) { printf("*"); } for(k=1;k<=5;k++)     {     if(i>=0&&i<2||i>4&&i<7)     {     printf("**");     }      else{       printf("  ");//one space } } printf("\n"); } getche(); }

how to make Alphabet E pattren in c languge

Image
How to print E alphabet with star pattern in c CODE: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k; system("color 0d"); for(i=0;i<=11;i++) { for(j=0;j<2;j++) { printf("*"); } for(k=1;k<=5;k++)     {     if(i>=0&&i<2||i>4&&i<7||i>9&&i<=11)     {     printf("**");     }      else{       printf("  ");//one space } } printf("\n"); } getche(); }

how to make Alphabet D pattren in c languge

Image
how to make Alphabet D pattren in c languge CODE: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k; system("color 06"); for(i=0;i<=11;i++) { for(j=0;j<2;j++) { printf("*"); } for(k=1;k<=5;k++) { if(i>=0&&i<2||i>9&&i<=11||k==5) { printf("**"); } else { printf("  ");//two spaces } } for(j=0;j<2;j++) { if(i>=0&&i<2||i>9&&i<=11) { printf(" "); } else { printf("*"); } } printf("\n"); } getche(); }

how to make Alphabet c pattren in c languge

Image
how to make Alphabet C pattren in c languge code: #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,k; system("color 05"); for(i=0;i<=11;i++) { for(j=0;j<=2;j++) { printf("*");       }       for(k=1;k<=5;k++)       {       if(i>=0&&i<2||i>9&&i<=11)       {       printf("**");   }   else   {    printf("  ");//two spaces   }      }   printf("\n"); } getche(); }

abcd alphabet pattern|| all alphabet pattern in c

Image
CODE:  #include<stdio.h> #include<conio.h> #include<stdlib.h> int i,j,k,l,m,count=6,c=1,c1=10,c2=1,c3=10,c4=11,c5=0,c6=8,a=0; void line() { for(k=0;k<=2;k++) { printf("*"); } } void gap() { for(k=0;k<=2;k++) { printf(" "); } } void crosstr() { for(j=10;j>=i;j--) { printf(" "); } } void crosstl() { for(j=10;j>=i;j--) { printf(" "); } } void crossbr() { for(l=1;l<=i;l++) { printf(" "); } } void crossbl() { for(j=1;j<=i;j++) { printf(" "); } } void mida() { for(l=1;l<=i;l++) { if(i>4&&i<7)        {         printf("**");    }else    {     printf("  ");    } } } void midb() { for(l=1;l<=5;l++) { if(i>=0&&i<2||i>4&&i<7||i>9&&i<=11) { printf("**"); }else { printf("  ")