Monday, 10 August 2015

Electric Wiring for Domestic Installers-Brian Scaddan (17TH Edition)

Electric Wiring for Domestic Installers-Brian Scaddan (17TH Edition) Click Here To Download...

Tuesday, 12 May 2015

Form validation Using Javascript

Click Here to Download(Source Code) Output ...

Monday, 11 May 2015

Tic-Tac Toe (Two Player) using javascript

Click Here to Download(source code) Click Here to See the Output ...

Tic-Tac Toe (Human vs Computer) using javascript

Click Here To Download(Source Code) Click Here to see Output ...

Monday, 13 April 2015

Rango Hd Wallpaper's

...

Tuesday, 7 April 2015

Romeo and Juliet

Romeo and Juliet pdf Book Full in  Bangla Click Here To Download...

Monday, 6 April 2015

Gulliver Vromon in bangla pdf

Gulliver's Travels by Jonathan Swift Travels into Several Remote Nations of the World. In Four Parts. By Lemuel Gulliver, First a Surgeon, and then a Captain of several Ships.... Translated by  Lila Majumder Click Here To Download  ...

Dictionary of Engineering - McGraw-Hill 2nd Edition

Dictionary of Engineering - McGraw-Hill 2nd Edition pdf Click Here To Download ...

Thursday, 2 April 2015

Guinness World Records 2015 Edition Book pdf

Guinness World Records 2015 Edition Book Full Free Download in pdf Click Here To Download ...

Saturday, 28 March 2015

Image To Text Converter Portable ( Ascii generator v2.0.0 )

Image To Text Converter Portable ( Ascii generator v2.0.0 ) You can convert your image easily as text by this software. Click Here To Download...

Friday, 27 March 2015

Triangle Shape-4

#include<stdio.h> int main() { int n; printf("Enter your number : "); scanf("%d",&n); printf("\n"); for(int i=0;i<n;i++) { for(int j=0;j<i;j++) { printf(" "); } for(int k=n;k>i;k--) { printf("*"); } printf("\n"); } return 0; } ...

Triangle Shape-3

#include<stdio.h> int main() { int n; printf("Enter your number : "); scanf("%d",&n); printf("\n"); for(int i=0;i<n;i++) { for(int j=n;j>i;j--) { printf(" "); } for(int k=0;k<=i;k++) { printf("*"); } printf("\n"); } return 0; } ...

Triangle shape-2

#include<stdio.h> int main() { int n; printf("Enter your number : "); scanf("%d",&n); printf("\n"); for(int i=0;i<n;i++) { for(int j=n;j>i;j--) { printf("*"); } printf("\n"); } printf("\n"); return 0; } ...

Triangle Shape-1

#include<stdio.h> int main() { int n; printf("Enter your number : "); scanf("%d",&n); printf("\n"); for(int i=0;i<n;i++) { for(int j=0;j<=i;j++) { printf("*"); } printf("\n"); } printf("\n"); return 0; } ...

Triangle Shape of Numeric Number in C

#include<stdio.h> int main() { int a=0; for(int j=0;j<6;j++) { for (int i=0;i<=j;i++) { a++; if(a==10) { a=0; } printf("%d ",a); } printf("\n"); } return 0; } ...

Thursday, 26 March 2015

Fibonacci series using Function & Pointer in C

#include<stdio.h> void fibonacci(int *r) { int a = 0, b = 1, display = 0; printf("fibonacci series: %d %d ", a, b); display = a + b; while (display < *r) { printf("%d ",display); a = b; b = display; display = a + b; } printf("\n"); } int main() { int m; printf("Enter number for fibonacci: "); scanf_s("%d", &m); fibonacci(&m); return 0; } ...

15 Magic Tricks For The Beginning Magician

Click Here To Download...

Pyramid shape using loop

#include<stdio.h> int main() { int n; printf("enter your line number: \n"); scanf("%d",&n); for(int i=1;i<=n;i++) { for(int j=i;j<=n;j++) { printf(" "); } for(int k=1;k<2*i;k++) { printf("*"); } printf("\n"); } return 0; } ...

How to Create a Blog on Blogger ( In Bangla )

Click Here To Download ...

Friday, 20 March 2015

Character and Word count ingnoring Space

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 #include<stdio.h> int main() { char A[]={"We feel proud to be a Bangladeshi"}; char *p=A; int character=0,word=0; for(int i=0;A[i]!='\0';i++) { if((*(p+i)>='a'&&*(p+i)<='z')||(*(p+i)>='A'&&*(p+i)<='Z')) { character++; } if(((*(p+i)>='a' && *(p+i)<='z') && (*(p+i+1)==' '|| *(p+i+1)=='\0'))||((*(p+i)>='A' && *(p+i)<='Z') && (*(p+i+1)==' '|| *(p+i+1)=='\0'))) { word=word+1; } printf("%c",A[i]); } printf("\n\n\ntotal character in this sentence : %d\n\n",character); printf("\ntotal word in this sentence : %d\n\n\n",word); } ...

Triangle of Numeric Number

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 #include<stdio.h> void fact(int num); int main(void) { int n; printf("enter your number : "); scanf("%d", &n); fact(n); return 0; } void fact(int num) { for(int i=1; i<=num; i++) { for(int j=1;j<=i;j++) { printf("%d", j); } printf("\n"); } return ; } ...

String Reverse using Pointer

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 #include<stdio.h> int string_length(char*); void reverse(char*); int main() { char string[100]; printf("Enter a string\n"); gets(string); reverse(string); printf("Reverse of entered string is \"%s\".\n", string); return 0; } void reverse(char *string) { int length, c; char *begin, *end, temp; length = string_length(string); begin = string; end = string; for ( c =...

String Reverse in C

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 #include<stdio.h> void boss(char *p) { char a; int i,j; for(j=0;p[j]!='\0';j++) { for(i=0;i<j;i++) { a = p[i]; p[i]=p[j]; p[j]=a; } } return; } int main() { char s[20]; printf("Enter The string to be reverse: "); gets(s); boss (s); printf("The Reversed string is: %s \n",s); return 0; } ...

Prime Number or Not

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #include<stdio.h> void main() { int n; printf("Please enter any number: "); scanf("%d", &n); for(int i=n-1;i>1;i--) { if(n%i==0) { printf("its not a prime number\n");goto level; } } printf("its a prime number\n"); level: printf("finish.....\n"); } ...

Odd Number Series

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 #include<stdio.h> void series(int num); int main(void) { int n; printf("enter your number : "); scanf("%d", &n); printf("\n"); series(n); return 0; } void series(int num) { for(int i=1; i<=2*num; i+=2) { for(int j=1;j<=i;j+=2) { printf("%d+", j); } } printf("\n"); return ; } ...

Maximum and Minimum Number

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 #include<stdio.h> void main( void ) { int i ,m, q; int *j , *k,*l; j = &i; k=&m;l=&q; printf("Insert first number: "); scanf("%d", j); printf("\nInsert second number: "); scanf("%d", k); printf("\nInsert third number: "); scanf("%d", l); printf("\n"); if(*j>*k) { if(*j>*l)...

 

Subscribe to our Newsletter

Contact our Support

Through the contact form

Our Team Memebers