• Streams & Subjects

    Streams & Subjects

    Get detailed description of each and every topic with proper examples including text, images and videos.

  • Latest Technologies

    Latest Technologies

    Know more about the latest and new emerging technologies and boost your knowledge.

  • Programming

    Programming

    Don't learn just codes and syntax, instead learn the best and efficient way of coding.

  • Technologies

    New Technologies

    Get instant and relevant updates of the latest emerging technologies of lots of streams including web, clouds, virtualization, etc.

  • Freewares

    Freewares

    Download free trials and freewares of various fields and check out their efficiency before buying.

  • Multimedia

    Multimedia

    Learn techniques to design amazing and creative multimedia designs and characters including 2D & 3D layout with rendering.

9lessons:7 Examples of Great Minimal Design with Webydo

9lessons:7 Examples of Great Minimal Design with Webydo

Link to 9lessons Programming Blog

7 Examples of Great Minimal Design with Webydo

Posted: 29 Apr 2015 07:31 AM PDT

As the young web took off so many years ago, the rush to fill digital pages with all manner of cool widgets and effects proved too tempting. We wound up with a busy, cluttered internet full of superfluous content. Remember those days? Fortunately, modern trends in web design have gone down a much more utilitarian path while still promoting compelling design.
Read more »


Read more

9lessons:Google Charts with Jquery Ajax

9lessons:Google Charts with Jquery Ajax

Link to 9lessons Programming Blog

Google Charts with Jquery Ajax

Posted: 26 Apr 2015 09:05 PM PDT

If you are working for analytics project, you need a rich chart system to display big data results. Google is providing us a powerful chart tools that you can implement charts very simple, this tutorial will explain you how to implement Google charts with Jquery ajax JSON data. Try out there are many free interactive charts and data tools, take a quick look at this live demo.

Audio Recording with Custom Audio Player using Jquery and HTML5

Read more »


Read more

C Programming

C Programming


Print Rectangle Pattern Program In C

Posted: 18 Apr 2015 06:15 AM PDT

Q. Print the rectangle pattern program in C as following design:

  1111111
  1222221
  1233321
  1234321
  1233321
  1222221
  1111111

Ans.

  1111111
  1222221
  1233321
  1234321
  1233321
  1222221
  1111111

Tips/Tricks:  Each color group represent a loop in rectangle pattern program as the below                              source code written.

/* source code for print the rectangle pattern program*/

#include<stdio.h>
int main()
{

 int num=4,r,c,m,n,p,q=6;
 for(r=1; r<=num; r++,q=q-2)
 {
    for(c=1; c<=r; c++)
        printf("%d", c);
    for(p=q; p>=1; p--)
       printf("%d", r);
    for(c=r-1; c>=1; c--)
        printf("%d", c);
    printf("\n");
 }
 for(r=3,m=1; r>=1; r--,m=m+2)
 {
    for(c=1; c<=r; c++)
        printf("%d", c);
    for(n=m; n>=1; n--)
        printf("%d", r);
    for(c=r; c>=1; c--)
        printf("%d", c);
    printf("\n");
 }
 getch();
 return 0;
}

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

Output of Print Rectangle Pattern Program In C
Figure: Screen shot for Print Rectangle Pattern Program In C

You might also like:

  1. Big list of 98+ C Pattern Programs
  2. Latest Pattern Program list asked by user


Read more