• 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:Facebook Remarketing for Better Advertisement Results

9lessons:Facebook Remarketing for Better Advertisement Results

Link to 9lessons Programming Blog

Facebook Remarketing for Better Advertisement Results

Posted: 09 Feb 2015 09:18 PM PST

Few days back we published an article called how to create an effective Facebook banner advertisements. This post will explain you how to use "re-marketing" feature on Facebook, this feature will help you to target product advertisements for recent visitors of your website. Please follow the Facebook remarketing setup process, I am sure this will improve your product sales.

Facebook Remarketing for Better Advertisement Results.

Read more »


Read more

C Programming

C Programming


How To Design Taj Mahal Shape Pyramid

Posted: 01 Feb 2015 04:11 AM PST

Q. Write a C program to print the following Taj Mahal Shape pyramid as:

*
***
*****
*******
**
****
******
*******
******
****
**
*******
*****
***
*

Ans.

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

 int r,c,w,x,y,z;
 for(r=1,z=1; r<=4; r++,z=z+2)
 {
   for(c=1; c<=z; c++)
       printf("*");
   printf("\n");
 }
 for(r=1,y=2; r<=3; r++,y=y+2)
 {
   for(c=1; c<=y; c++)
       printf("*");
   printf("\n");
 }
 for(r=1; r<=7; r++)
    printf("*");
 printf("\n");
 for(r=1,x=6; r<=3; r++,x=x-2)
 {
   for(c=1; c<=x; c++)
       printf("*");
   printf("\n");
 }
 for(r=1,w=7; r<=4; r++,w=w-2)
 {
   for(c=1; c<=w; c++)
       printf("*");
   printf("\n");
 }
 getch();
 return 0;
}

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

Output of Taj Mahal shape pyramid source code C programming
Figure: Screen shot for Taj Mahal shape pyramid source code C program


You might also like:

  1. Big list of 98+ C Pyramid Programs
  2. Latest Pyramid Programs List asked by users


Read more

9lessons:Google Materialize a Responsive HTML5 Framework

9lessons:Google Materialize a Responsive HTML5 Framework

Link to 9lessons Programming Blog

Google Materialize a Responsive HTML5 Framework

Posted: 25 Jan 2015 07:19 PM PST

Materialize is a Responsive CSS Framework based on Google's Material Design Concepts. Materialize aims to bring material design to web which was initially made by Google for Android. In this tutorial I will explain what material design is and then we will build a blog home page using Materialize.

What is Design Language?
A design language(or design vocabulary) is an style that guides the design of a complement of products. Designers wishing to give their suite of products a unique but consistent look and feel define a design language for it, which can describe choices for design aspects such as materials, color schemes, shapes, patterns, textures, or layouts.

Detect Shake in Phone using Jquery

Read more »


Read more