9lessons:Create an Effective Facebook Banner Advertisement.

9lessons:Create an Effective Facebook Banner Advertisement.

Link to 9lessons Programming Blog

Create an Effective Facebook Banner Advertisement.

Posted: 24 Feb 2014 11:02 AM PST

If you are running an online business, Facebook is offering a great advertisement platform that you can promote your products with millions of users. In this post I want to explain how to create an effective Facebook banner advertisement with button features using Power Editor. We are using this system for Wall Script and OAuthLogin, sure this will improve your product sales.

Create Effective Facebook Banner Advertisement.

Read more »


Post a Comment

IPL Twenty20 Cricket

IPL Twenty20 Cricket


Ireland Easy Win against World T20 champions West Indies at Sabina Park

Posted: 20 Feb 2014 02:12 AM PST

Ireland included to their record of giant-killing wins with a six-wicket win over Icc Twenty20 winners Western Indies in the first T20 worldwide at Jamaica's Sabina sport area on Wed.It was at the Kingston location where Ireland in europe considerably beaten Pakistan in a St Patrick's Day 50-over Globe Cup coordinates returning in 2007.

And seven decades on from that achievement, Ireland in europe the top non-Test cricket country disappointed one of the sport's 'big boys' once again, with former Britain batsman Ed Joyce creating a major 40 not out.After the Western Indies won the throw and batted, an excellent all-round Ireland in attempt in the area saw the serves limited to 116 for eight in their 20 over.

Joyce, who assisted Ireland in restore from eight for two after both openers went at low costs, added: "They are a pretty terrifying group to perform against but we know we've got an opportunity to defeat anyone when we perform well on our day."

Next 30 days recognizes the Western Indies protect their international headline at the 2014 Icc Twenty20 World Cup in Bangladesh a competition where Ireland's first coordinate is a St Patrick's Day conflict against Zimbabwe on Goal 17.

Scorecard:

West Indies: 116/8 for 20 overs

Ireland innings (target: 117 runs from 20 overs)

Ireland: 117/4 for 19.1 overs

Ireland won by 6 wickets (with 5 balls remaining)

Ed Joyce is the Man of the Match for the unbeaten 40.


Post a Comment

C Programming

C Programming


Square Number Triangle

Posted: 17 Feb 2014 11:47 AM PST

Q. Write a C program to print the following square number triangle as:

1
1 4 9
1 4 9 16 25
1 4 9 16 25 36 49
1 4 9 16 25 36 49 64 81

Ans.

/*c program for square number triangle*/
#include<stdio.h>
int main()
{

 int r,c,q=1;
 for(r=1; r<=5; r++,q=q+2)
 {
  for(c=1; c<=q; c++)
     printf(" %d",c*c);
  printf("\n");
 }
 getch();
 return 0;
}

/***********************************************************
The output of above program would be:
***********************************************************/

Output of square number triangle C program
Figure: Screen shot for square number triangle C program

Related Program:


1
1 2 3
1 2 3 4 5
1 2 3 4 5 6 7
1 2 3 4 5 6 7 8 9 


Post a Comment

9lessons:Webydo’s 50K Professional Designers Leading The Design Revolution, Here’s Why

9lessons:Webydo’s 50K Professional Designers Leading The Design Revolution, Here’s Why

Link to 9lessons Programming Blog

Webydo’s 50K Professional Designers Leading The Design Revolution, Here’s Why

Posted: 17 Feb 2014 12:01 AM PST

There are many platforms available that let you create websites without having a degree or background in programming or HTML. However, the mass majority of these But most of them don't provide you with enough penetration to create the website as you really want. They have some pre-made custom shapes and designs and you can choose the ones which you like then tweak them here and there and that's all.

Professional Designers Leading The Design Revolution.

Read more »


Post a Comment

C Programming

C Programming


Number Pyramid Pattern

Posted: 17 Feb 2014 11:30 AM PST

Q. Write a C program to print the following square number pyramid pattern as:

1  2  3  4  5
15 14 13 12
6  7  8
11 10
9

Ans.

/*c program for square number pyramid pattern*/
#include<stdio.h>
int main()
{
 int r,c,s1=1,s2=15;
 for(r=5; r>=1; r--)
 {
  if(r%2==0)
  {
    for(c=1; c<=r; c++,s2--)
       printf(" %d",s2);
  }
  else
  {
     for(c=1; c<=r; c++,s1++)
       printf(" %d",s1); 
  }
  printf("\n");
 }
 getch();
 return 0;
}

/**********************************************************
The output of above program would be:
*********************************************************/


Output of square number pyramid pattern C program
Figure: Screen shot for square number pyramid C program

Number Triangle Pattern

Posted: 17 Feb 2014 11:08 AM PST

Q. Write a C program to print the following number pattern as:

1
1 2 3
1 2 3 4 5
1 2 3 4 5 6 7
1 2 3 4 5 6 7 8 9

Ans.

/*c program for triangle number pattern*/
#include<stdio.h>
int main()
{
 int num,r,c,q=1;
 for(r=1; r<=5; r++,q=q+2)
 {
  for(c=1; c<=q; c++)
     printf(" %d",c);
  printf("\n");
 }
 getch();
 return 0;
}


/**********************************************************
The output of above program would be:
***********************************************************/
Output of number triangle pattern C program
Figure: Screen shot for number triangle pattern C program

Related Programs:

print the following pattern as:

1
1 4 9
1 4 9 16 25
1 4 9 16 25 36 49
1 4 9 16 25 36 49 64 81


Post a Comment

9lessons:Login with GitHub OAuth using PHP

9lessons:Login with GitHub OAuth using PHP

Link to 9lessons Programming Blog

Login with GitHub OAuth using PHP

Posted: 10 Feb 2014 11:40 AM PST

Nowadays GitHub.com(web based hosting service) is the most import part in developer's life. In this I want to discuss how to implement GitHub OAuth login system for your web project, this is very simple adopt and sure it will helps you to increase your web project registrations. Please check my previous posts for Google, Facebook and Instagram OAuth login system scripts.

Login with Google Account OAuth.
Read more »


Post a Comment

C Programming

C Programming


Equal Character Triangle

Posted: 06 Feb 2014 09:39 AM PST

Q. Write a C program to print the following equal character triangle pattern as:

A
BAB
CBABC
DCBABCD
EDCBABCDE

Ans.

/*c program for Equal Character Triangle pattern*/
#include<stdio.h>
int main()
{
 char ch,r,c;
 printf("Enter Any Character : ");
 scanf("%c", &ch);
 if(ch>='a' && ch<='z')
    ch=ch-32;
 for(r='A'; r<=ch; r++)
 {
   for(c=r; c>='A'; c--)
      printf("%c",c);
   for(c='B'; c<=r; c++)
      printf("%c",c);
   printf("\n");
 }
 getch();
 return 0;
}

/*********************************************
The output of above program would be:
********************************************/

Output of equal character triangle C program
Figure: Screen shot for equal character triangle C program


Related Program:

Equal Number Triangle C program:

1
212
32123
4321234
543212345

Equal Number Triangle

Posted: 06 Feb 2014 09:42 AM PST

Q. Write a C program to print the following equal number triangle pattern as:

1
212
32123
4321234
543212345

Ans.

/*c program for equal number triangle pattern*/
#include<stdio.h>
int main()
{
 int num,r,c;
 printf("Enter Any Number : ");
 scanf("%d", &num);
 for(r=1; r<=num; r++)
 {
   for(c=r; c>=1; c--)
      printf("%d",c);
   for(c=2; c<=r; c++)
      printf("%d",c);
   printf("\n");
 }
 getch();
 return 0;
}

/**********************************************************
The output of above program would be:
***********************************************************/


Output of equal number triangle pattern C program
Figure: Screen shot for equal number triangle C program

Related Programs:

Equal Character Triangle as:

A
BAB
CBABC
DCBABCD


Post a Comment

C Programming

C Programming


Character Pyramid

Posted: 01 Feb 2014 04:55 AM PST

Q. Write a C program to takes the last character by user and print the following character pyramid as:
(if user input : j), then output would be like as:

A
ABA
ABCBA
ABCDCBA
ABCDEDCBA
ABCDEFEDCBA
ABCDEFGFEDCBA
ABCDEFGHGFEDCBA
ABCDEFGHJHGFEDCBA
ABCDEFGHGFEDCBA
ABCDEFGFEDCBA
ABCDEFEDCBA
ABCDEDCBA
ABCDCBA
ABCBA
ABA
A

Ans.

/*c program for character pyramid*/
#include<stdio.h>
int main()
{

 char ch,r,c,p;
 printf("Enter any character : ");
 scanf("%c", &ch);
 if(ch>='a' && ch<='z')
   ch=ch-32;
 for(r='A'; r<=ch; r++)
 {
   for(c='A'; c<=r; c++)
      printf("%c",c);
   for(c=r-1; c>='A'; c--)
      printf("%c",c);
   printf("\n");
 }
 for(p=ch-1,r='A'; r<ch; r++,p--)
 {
   for(c='A'; c<=p; c++)
      printf("%c",c);
   for(c=p-1; c>='A'; c--)
      printf("%c",c);
   printf("\n");
 }
 getch();
 return 0;
}

/*********************************************************
The output of above program would be:
*********************************************************/


Output of character pattern pyramid C program
Figure: Screen shot for character pyramid C program



Post a Comment