Wednesday, January 29, 2014

How to add SEO friendly Title to Blogger

In order to higher ranking in search engines the Page title plays an important role in your blog.
Below figure is an example



 Follow below steps:
  •  Go to template then click Edit HTML.
  • Press Ctrl+F and find this code  " 
<title<data:blog.pageTitle/></title>".
  •  Replace the above code with the following codes: 
 <b:if cond='data:blog.pageType == &quot;index&quot;'>
  <title><data:blog.pageTitle/></title>
  <b:else/>
 <title><data:blog.pageName/> All about blogging</title>
  </b:if>
  • Replace the blue text by your blog's Name.
  • Now you have done.




 

    Tuesday, January 28, 2014

    How to use smileys and emotions on facebook

    Facebook Smileys
    Smiley Expressions Code
    smile :-) and :)
    heart <3 td="">
    face :putnam:
    devil 3:)
    glasses 8-) and 8)
    kiss :-* and :*
    tongue :P and :-p
    grin :D
    gasp :O
    frown :-(and :(
    upset >:( and >:-(
    curly lips :3
    confused o.O andO.o

    Blogging

    Blogging Before discussing about blogging i am writing here what is blog. 

    Blog 

    A blog  is a discussion or informational site published on the world wide web (www) and consisting of discrete entries ("posts") typically displayed in reverse chronological order (the most recent post appears first). Until 2009 blogs were usually the work of a single individual, occasionally of a small group, and often covered a single subject. More recently "multi-author blogs" (MABs) have developed, with posts written by large numbers of authors and professionally edited.
    A majority are interactive, allowing visitors to leave comments and even message each other via GUI widgets on the blogs, and it is this interactivity that distinguishes them from other static websites. In that sense, blogging can be seen as a form of social networking. Indeed, bloggers do not only produce content to post on their blogs, but also build social relations with their readers and other bloggers.

    Many blogs provide commentary on a particular subject; others function as more personal online diaries others function more as online brand advertising of a particular individual or company. A typical blog combines text, images, and links to other blogs, Web pages, and other media related to its topic. The ability of readers to leave comments in an interactive format is an important contribution to the popularity of many blogs. Most blogs are primarily textual. 

    Blogging

    Monday, January 27, 2014

    Google Adsense


    Google Adsense

    Google Adsense

    Google AdSense is a program run by Google that allows publishers in the Google Network of content sites to serve automatic text, image, video, or interactive media advertisements that are targeted to site content and audience. These advertisements are administered, sorted, and maintained by Google, and they can generate revenue on either a per click or per impression basis.

    Why adsense

    Many websites use AdSense to monetize their content; it is the most popular advertising network. AdSense has been particularly important for delivering advertising revenue to small websites that do not have the resources for developing advertising sales programs and sales people to generate revenue with. To fill a website with advertisements that are relevant to the topics discussed, webmasters place a brief HTML code on the websites' pages. Websites that are content-rich have been very successful with this advertising program, as noted in a number of publisher case studies on the AdSense website. AdSense publishers may only place three ad units per page.

    How to run graphics program using turbo C

    How to run graphics program using turbo C How to run graphics program using turbo C

    Follow the below steps :

    • Go to that drive where your Turbo C folder reside.
    • Now open TC folder.
    • Now you will see a folder with name BGI
    • Open BGI folder .Find "EGAVGA.BGI" & CGA.BGI 
    • Now paste these two files into Bin Folder. 
    • Open Turbo C and write your desired graphics program.
    • Now click on option.
    • Then click on linker ,then include graphic.
    • Now compile and run ,graphic will run.

    Simple C program to calculate area of circle r1 and r2

    Simple C program to calculate area of circle r1 and r2

    C Program to calculate area of circle r1 and r2

    #include<stdio.h>
    int main()
    {
    float r1,r2,area;
    printf("Enter r1 of circle:");
    scanf("%f",&r1);
    printf("Enter r2 of circle:");
    scanf("%f",&r2);
    area=3.146*(r1*r2);
    printf("\nr1=%f",r1);
    printf("\nr2=%f",r2);
    printf("\n\narea=3.146*(%f*%f)",r1,r2);
    printf("\n\nArea of circle=%f",area);
    return 0;
    }


    The output of above program is:


    Sunday, January 26, 2014

    Simple C Program to convert the Celsius value to Fahrenheight value

    Simple C Program to convert the Celsius value to Fahrenheight value
    #include<stdio.h>
    int main()
    {
        float celsius,fahrenheit;
        printf("Please enter the celsius temperature:");
        scanf("%f",&celsius);
        fahrenheit=(1.8*celsius)+32;
        printf("\nC=%f",celsius);
        printf("\nF=(1.8*C)+32\n");
        printf("\n(1.8*%f)+32=%f",celsius,fahrenheit);
        printf("\n\nFahrenheit=%f",fahrenheit);
        return 0;
    }


    Note

    Formula is :
    F=(9/2*C)+32
    For convenience i have written , 9/2= 1.8
    F=(1.8*C)+32
    The output of above program:

    Thursday, January 23, 2014

    What is pointer and why pointers are used in C programs

    What is pointer and why pointers are used in C programs <title> <div dir="ltr" style="text-align: left;" trbidi="on"> <span style="font-size: large;">Pointer is the address of an object(i.e a specific memory location). it can refer to different objects at different times. Pointers contain memory addresses as their values.</span><br /> <span style="font-size: large;">pointers are used in C programs for different purposes.</span><br /> <ol style="text-align: left;"><span style="font-size: large;"> </span> <li><span style="font-size: large;">To return more than one value from a function(using pass by reference).</span></li> <span style="font-size: large;"> </span> <li><span style="font-size: large;">To create and process strings.</span></li> <span style="font-size: large;"> </span> <li><span style="font-size: large;">To manipulate the contents of arrays and structures.</span></li> <span style="font-size: large;"> </span> <li><span style="font-size: large;">To construct data structures whose size can grow or shrink dynamically.</span></li> </ol> </div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Posted by <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <span itemprop='name'>Admin</span> </span> </span> <span class='post-timestamp'> at <meta content='http://4everprogramming.blogspot.com/2014/01/what-is-pointer-and-why-pointers-are.html' itemprop='url'/> <a class='timestamp-link' href='https://4everprogramming.blogspot.com/2014/01/what-is-pointer-and-why-pointers-are.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2014-01-23T12:37:00-08:00'>12:37 PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='https://4everprogramming.blogspot.com/2014/01/what-is-pointer-and-why-pointers-are.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-control blog-admin pid-1539724667'> <a href='https://www.blogger.com/post-edit.g?blogID=2987092739882673844&postID=7652009036248526646&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=7652009036248526646&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=7652009036248526646&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=7652009036248526646&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=7652009036248526646&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=7652009036248526646&target=pinterest' target='_blank' title='Share to Pinterest'><span class='share-button-link-text'>Share to Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Labels: <a href='https://4everprogramming.blogspot.com/search/label/Pointers%20in%20C' rel='tag'>Pointers in C</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2987092739882673844' itemprop='blogId'/> <meta content='5819348558350623796' itemprop='postId'/> <a name='5819348558350623796'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='https://4everprogramming.blogspot.com/2014/01/c-program-to-print-from-1-to-10-using.html'>C Program to print from 1 to 10 using while loop</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-5819348558350623796' itemprop='articleBody'> <div dir="ltr" style="text-align: left;" trbidi="on"> <span style="font-size: large;">#include<stdio.h></span><br /> <span style="font-size: large;">int main()</span><br /> <span style="font-size: large;">{</span><br /> <span style="font-size: large;">  int counter=1;</span><br /> <span style="font-size: large;">  while(counter<=10)</span><br /> <span style="font-size: large;">{</span><br /> <span style="font-size: large;">    printf("%d\n",counter);</span><br /> <span style="font-size: large;">    ++counter;</span><br /> <span style="font-size: large;">}</span><br /> <span style="font-size: large;">return 0;</span><br /> <span style="font-size: large;">}</span></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Posted by <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <span itemprop='name'>Admin</span> </span> </span> <span class='post-timestamp'> at <meta content='http://4everprogramming.blogspot.com/2014/01/c-program-to-print-from-1-to-10-using.html' itemprop='url'/> <a class='timestamp-link' href='https://4everprogramming.blogspot.com/2014/01/c-program-to-print-from-1-to-10-using.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2014-01-23T12:00:00-08:00'>12:00 PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='https://4everprogramming.blogspot.com/2014/01/c-program-to-print-from-1-to-10-using.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-control blog-admin pid-1539724667'> <a href='https://www.blogger.com/post-edit.g?blogID=2987092739882673844&postID=5819348558350623796&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=5819348558350623796&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=5819348558350623796&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=5819348558350623796&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=5819348558350623796&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=5819348558350623796&target=pinterest' target='_blank' title='Share to Pinterest'><span class='share-button-link-text'>Share to Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Labels: <a href='https://4everprogramming.blogspot.com/search/label/Loops%20in%20C' rel='tag'>Loops in C</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2987092739882673844' itemprop='blogId'/> <meta content='2065964950837936026' itemprop='postId'/> <a name='2065964950837936026'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='https://4everprogramming.blogspot.com/2014/01/program-to-find-hotness-and-coldness-of.html'>Program to find Hotness and Coldness of temperature using If statements</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-2065964950837936026' itemprop='articleBody'> <div dir="ltr" style="text-align: left;" trbidi="on"> <span style="color: #38761d; font-size: large;">#include<stdio.h></span><br /> <span style="font-size: large;">int main<span style="color: red;">()</span></span><br /> <span style="color: red; font-size: large;">{</span><br /> <span style="font-size: large;">int temp<span style="color: red;">;</span></span><br /> <span style="font-size: large;">printf<span style="color: red;">(</span><span style="color: blue;">"\nEnter temperature :"</span><span style="color: red;">);</span></span><br /> <span style="font-size: large;">scanf<span style="color: red;">(</span><span style="color: blue;">"%d,&temp"</span><span style="color: red;">);</span></span><br /> <span style="font-size: large;">if<span style="color: red;">(</span><span style="color: blue;">temp>30</span><span style="color: red;">)</span></span><br /> <span style="font-size: large;">printf<span style="color: red;">(</span><span style="color: blue;">"\nHot\n"</span><span style="color: red;">);</span></span><br /> <span style="font-size: large;">if<span style="color: red;">(<span style="color: blue;">temp>20</span>)</span></span><br /> <span style="font-size: large;">printf<span style="color: red;">(</span><span style="color: blue;">"\nMild\n"</span><span style="color: red;">);</span></span><br /> <span style="font-size: large;">if<span style="color: red;">(</span><span style="color: blue;">"temperature>10"</span><span style="color: red;">)</span></span><br /> <span style="font-size: large;">printf<span style="color: red;">(</span><span style="color: blue;">"\nCold\n"</span><span style="color: red;">) ;</span></span><br /> <span style="font-size: large;">return <span style="color: magenta;">0</span><span style="color: red;">;</span></span><br /> <span style="color: red; font-size: large;">} </span></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Posted by <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <span itemprop='name'>Admin</span> </span> </span> <span class='post-timestamp'> at <meta content='http://4everprogramming.blogspot.com/2014/01/program-to-find-hotness-and-coldness-of.html' itemprop='url'/> <a class='timestamp-link' href='https://4everprogramming.blogspot.com/2014/01/program-to-find-hotness-and-coldness-of.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2014-01-23T11:41:00-08:00'>11:41 AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='https://4everprogramming.blogspot.com/2014/01/program-to-find-hotness-and-coldness-of.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-control blog-admin pid-1539724667'> <a href='https://www.blogger.com/post-edit.g?blogID=2987092739882673844&postID=2065964950837936026&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=2065964950837936026&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=2065964950837936026&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=2065964950837936026&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=2065964950837936026&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=2065964950837936026&target=pinterest' target='_blank' title='Share to Pinterest'><span class='share-button-link-text'>Share to Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Labels: <a href='https://4everprogramming.blogspot.com/search/label/Simple%20C%20Programs' rel='tag'>Simple C Programs</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2987092739882673844' itemprop='blogId'/> <meta content='4784793549642664886' itemprop='postId'/> <a name='4784793549642664886'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='https://4everprogramming.blogspot.com/2014/01/simple-program-to-add-three-integers.html'>Simple Program to add three integers</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-4784793549642664886' itemprop='articleBody'> <div dir="ltr" style="text-align: left;" trbidi="on"> <span style="font-size: large;"><span style="color: #274e13;">#include<stdio.h><br />#include<conio.h></span><br />void main<span style="color: red;">()</span><br /><span style="color: red;">{</span><br />    int x<span style="color: red;">,</span>y<span style="color: red;">,</span>z<span style="color: red;">,</span>result<span style="color: red;">;</span><br />    printf<span style="color: red;">(</span>"<span style="color: blue;">Enter x:\n</span>"<span style="color: red;">);</span><br />    scanf<span style="color: red;">(</span>"<span style="color: blue;">%d</span>"<span style="color: red;">,&</span>x<span style="color: red;">);</span><br />    printf<span style="color: red;">(</span>"<span style="color: blue;">Enter y</span>:\n"<span style="color: red;">);</span><br />    scanf<span style="color: red;">(</span>"<span style="color: blue;">%d</span>"<span style="color: red;">,&</span>y<span style="color: red;">);</span><br />    printf<span style="color: red;">(</span>"<span style="color: blue;">Enter z</span>:\n"<span style="color: red;">);</span><br />    scanf<span style="color: red;">(</span>"<span style="color: blue;">%d</span>"<span style="color: red;">,&</span>z<span style="color: red;">);</span><br />    result<span style="color: red;">=</span>x<span style="color: red;">+</span>y<span style="color: red;">+</span>z<span style="color: red;">;</span><br />    printf<span style="color: red;">(</span>"<span style="color: blue;">Result=%d</span>"<span style="color: red;">,</span>result<span style="color: red;">);</span><br />    <br /><span style="color: red;">}</span></span></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Posted by <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <span itemprop='name'>Admin</span> </span> </span> <span class='post-timestamp'> at <meta content='http://4everprogramming.blogspot.com/2014/01/simple-program-to-add-three-integers.html' itemprop='url'/> <a class='timestamp-link' href='https://4everprogramming.blogspot.com/2014/01/simple-program-to-add-three-integers.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2014-01-23T07:42:00-08:00'>7:42 AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='https://4everprogramming.blogspot.com/2014/01/simple-program-to-add-three-integers.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-control blog-admin pid-1539724667'> <a href='https://www.blogger.com/post-edit.g?blogID=2987092739882673844&postID=4784793549642664886&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=4784793549642664886&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=4784793549642664886&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=4784793549642664886&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=4784793549642664886&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=4784793549642664886&target=pinterest' target='_blank' title='Share to Pinterest'><span class='share-button-link-text'>Share to Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Labels: <a href='https://4everprogramming.blogspot.com/search/label/Simple%20C%20Programs' rel='tag'>Simple C Programs</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Wednesday, January 22, 2014</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2987092739882673844' itemprop='blogId'/> <meta content='8504649472044519816' itemprop='postId'/> <a name='8504649472044519816'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='https://4everprogramming.blogspot.com/2014/01/program-to-make-simple-calculator-using.html'>Switch Statements</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-8504649472044519816' itemprop='articleBody'> <div dir="ltr" style="text-align: left;" trbidi="on"> <a href="http://4everprogramming.blogspot.com/p/sw.html">Program to make simple calculator using switch statements</a></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Posted by <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <span itemprop='name'>Admin</span> </span> </span> <span class='post-timestamp'> at <meta content='http://4everprogramming.blogspot.com/2014/01/program-to-make-simple-calculator-using.html' itemprop='url'/> <a class='timestamp-link' href='https://4everprogramming.blogspot.com/2014/01/program-to-make-simple-calculator-using.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2014-01-22T13:19:00-08:00'>1:19 PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='https://4everprogramming.blogspot.com/2014/01/program-to-make-simple-calculator-using.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-control blog-admin pid-1539724667'> <a href='https://www.blogger.com/post-edit.g?blogID=2987092739882673844&postID=8504649472044519816&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=8504649472044519816&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=8504649472044519816&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=8504649472044519816&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=8504649472044519816&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=8504649472044519816&target=pinterest' target='_blank' title='Share to Pinterest'><span class='share-button-link-text'>Share to Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Labels: <a href='https://4everprogramming.blogspot.com/search/label/Simple%20C%20Programs' rel='tag'>Simple C Programs</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Tuesday, January 7, 2014</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2987092739882673844' itemprop='blogId'/> <meta content='6916718165816807519' itemprop='postId'/> <a name='6916718165816807519'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='https://4everprogramming.blogspot.com/2014/01/your-first-c-program.html'>Your first C Program</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-6916718165816807519' itemprop='articleBody'> <div dir="ltr" style="text-align: left;" trbidi="on"> #include<stdio.h><br /> int main()<br /> {<br /> printf("Angry Bird");<br /> return 0;<br /> }<br /> <br /></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Posted by <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <span itemprop='name'>Admin</span> </span> </span> <span class='post-timestamp'> at <meta content='http://4everprogramming.blogspot.com/2014/01/your-first-c-program.html' itemprop='url'/> <a class='timestamp-link' href='https://4everprogramming.blogspot.com/2014/01/your-first-c-program.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2014-01-07T12:19:00-08:00'>12:19 PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='https://4everprogramming.blogspot.com/2014/01/your-first-c-program.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-control blog-admin pid-1539724667'> <a href='https://www.blogger.com/post-edit.g?blogID=2987092739882673844&postID=6916718165816807519&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=6916718165816807519&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=6916718165816807519&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=6916718165816807519&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=6916718165816807519&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=2987092739882673844&postID=6916718165816807519&target=pinterest' target='_blank' title='Share to Pinterest'><span class='share-button-link-text'>Share to Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Labels: <a href='https://4everprogramming.blogspot.com/search/label/Simple%20C%20Programs' rel='tag'>Simple C Programs</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='https://4everprogramming.blogspot.com/search?updated-max=2014-03-28T09:09:00-07:00&max-results=7&reverse-paginate=true' id='Blog1_blog-pager-newer-link' title='Newer Posts'>Newer Posts</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='https://4everprogramming.blogspot.com/search?updated-max=2014-01-07T12:19:00-08:00&max-results=7' id='Blog1_blog-pager-older-link' title='Older Posts'>Older Posts</a> </span> <a class='home-link' href='https://4everprogramming.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='blog-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='https://4everprogramming.blogspot.com/feeds/posts/default' target='_blank' type='application/atom+xml'>Posts (Atom)</a> </div> </div> </div></div> </div> </div> <div class='column-left-outer'> <div class='column-left-inner'> <aside> </aside> </div> </div> <div class='column-right-outer'> <div class='column-right-inner'> <aside> <div class='sidebar section' id='sidebar-right-1'> <div class='widget HTML' data-version='1' id='HTML5'> <h2 class='title'>Hosting</h2> <div class='widget-content'> <a href="http://22683wtxm6u5m0f7i67xbqdv09.hop.clickbank.net/" target="_top"><img src="http://bhpservers.us/images/better-hosting-468_60.gif" alt="better affordable hosting plans" border="0" width="468" height="60" /></a><a></a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML6'> <h2 class='title'>Anchan Tech</h2> <div class='widget-content'> Want to Create Your own WordPress website? Contact Us <a href="http://www.anchantech.com">Anchan Tech </a> </div> <div class='clear'></div> </div><div class='widget PopularPosts' data-version='1' id='PopularPosts1'> <h2>Popular Posts</h2> <div class='widget-content popular-posts'> <ul> <li> <div class='item-content'> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2015/01/how-to-implement-stack-by-array-in-c.html'>How to implement Stack by Array in C++? </a></div> <div class='item-snippet'> #include<iostream> #include<conio.h> #include<stdio.h> //#include<stack> using namespace std; #define max 5 int Sta...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2015/01/how-to-implemet-linear-queue-by-linklist.html'>How to implemet Linear Queue By Linklist?</a></div> <div class='item-snippet'> #include<iostream> #include<stdlib.h> using namespace std; struct node {                 int data;                 struct node ...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2015/01/implementation-of-stack-by-linklist.html'>Implementation of Stack by linklist</a></div> <div class='item-snippet'> #include <iostream> #include<stdio.h> #include <conio.h> using namespace std; struct node {     int info;     struct node...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2015/01/how-to-implement-binary-search-tree-and.html'>How to implement Binary Search Tree and show output as Inorder, Preorder and Post Order?</a></div> <div class='item-snippet'> #include<conio.h> #include<iostream> #include<stdio.h> #include<stdlib.h> #include<malloc.h> using namespace ...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2015/01/how-to-implement-circular-queue-by.html'>How to implement Circular Queue By Linklist?</a></div> <div class='item-snippet'> //Circular Queue Through Linklists #include<iostream> #define SIZE 100 #include<conio.h> using namespace std; struct circularqu...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://4everprogramming.blogspot.com/2015/01/how-to-createinsertdelete-and-reverse_48.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBcEhzpbjJn6b21l2wNO0RqYs0wJTpOlnH0E-Pk7eUEKaiVUG9sU2b2g3_3U5UaLvwQc-KZOfDJ0zJXZHryFr27gCs9hKCJVhzm6a0VYIaMaZzBmZKMO0r-dmFGiQgt1SiNoSjVxyKrSLt/w72-h72-p-k-no-nu/Douly+Algorithm.png'/> </a> </div> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2015/01/how-to-createinsertdelete-and-reverse_48.html'> How to create,insert,delete and reverse Linear Doubly linklist in C++? </a></div> <div class='item-snippet'> //Lab 7 Solution #include<iostream> #include<conio.h> #include<malloc.h> #include<process.h> using namespace std;...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2015/01/how-to-createinsertdelete-and-reverse_14.html'> How to create,insert,delete and reverse Doubly Circular linklist in C++?</a></div> <div class='item-snippet'> #include<iostream> #include<conio.h> using namespace std;  struct circular {     int i;     struct circular *front;     struct ...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://4everprogramming.blogspot.com/2014/06/blog-post.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxWshwYdgUGq1IBdFstSwEIlWp3SeSRICTPFKi1JWvwiNJyItP20uYWmkXBDIqrVRdVxdXrD9gndvUnIwSg8wBOAyi0oirEsctWihNNLDTX5wRiHEkL5ilbqoklnfkiJz4O1j5MXmX6anh/w72-h72-p-k-no-nu/pointers.JPG'/> </a> </div> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2014/06/blog-post.html'>C++ Simple pointer program to print address and value</a></div> <div class='item-snippet'> #include<iostream> #include<conio.h> using namespace std; int main () {      int a= 5;  /* actual variable declaration */...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://4everprogramming.blogspot.com/2014/10/how-to-buy-domain-and-hosting-package.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIwlSzGsXejziDvwEjn_P1S988gMDwfduXOjvUeISAzKaJp27fAk4VbrcYrrbjsPVey5Jf59UWRJUuJaEDgrW5tzzARbZicTkvvXoCzj9b0zMekukmgUtY6g5mqMGv97Gz2Vaj1JQJTFa1/w72-h72-p-k-no-nu/domain_web_hosting_services.jpg'/> </a> </div> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2014/10/how-to-buy-domain-and-hosting-package.html'>How to Buy Domain and Hosting Package Easily in Pakistan?</a></div> <div class='item-snippet'> If you wanna buy a domain and hosting package from godaddy or other companies then its very difficult to pay money if you don't have cr...</div> </div> <div style='clear: both;'></div> </li> <li> <div class='item-content'> <div class='item-thumbnail'> <a href='https://4everprogramming.blogspot.com/2015/01/how-to-createinsertdelete-and-reverse.html' target='_blank'> <img alt='' border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitqww0f-cu8ER2pplsSj5ohx2jjRgOYtpBWojbrrb0zPfCFlwDsPXvri3GgB_oTGoNPMgKDr8HaaV3krngHOJi6DRFQp0yf5vWIp5s5gmRSEkGAz3WktiMqp5xVh708ZjCujZUwpGBQPuv/w72-h72-p-k-no-nu/Create.png'/> </a> </div> <div class='item-title'><a href='https://4everprogramming.blogspot.com/2015/01/how-to-createinsertdelete-and-reverse.html'>How to create,insert,delete and reverse signly linear linklist in C++?</a></div> <div class='item-snippet'> The program which I am posting here you will not find any where on internet. It is very easy to understand. I have attached some pics. SO t...</div> </div> <div style='clear: both;'></div> </li> </ul> <div class='clear'></div> </div> </div> <div class='widget Stats' data-version='1' id='Stats1'> <h2>Total Pageviews</h2> <div class='widget-content'> <div id='Stats1_content' style='display: none;'> <span class='counter-wrapper graph-counter-wrapper' id='Stats1_totalCount'> </span> <div class='clear'></div> </div> </div> </div><div class='widget Image' data-version='1' id='Image3'> <h2>Click here to buy Doamin and Hosting Package in Pakistan very easily</h2> <div class='widget-content'> <a href='https://secure.hosterpk.com/aff.php?aff=507'> <img alt='Click here to buy Doamin and Hosting Package in Pakistan very easily' height='77' id='Image3_img' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhI6EPCFF-ITWHni8x1BGkBtqU78DQVt_xwUZFB-UkKWSOGpE2Ny12hxCP-OJ-uEKX3tRu0Axha52QIpduC3-Bd1k-ZZPL90JUcvEqHWO7b4K6AHYRgOo2k7Yv737u1x8TDS6V3zFuxvcLc/s1600/Hosterpk.png' width='482'/> </a> <br/> </div> <div class='clear'></div> </div> <div class='widget HTML' data-version='1' id='HTML2'> <h2 class='title'>Visitors</h2> <div class='widget-content'> <a href="http://info.flagcounter.com/cje8"><img src="http://s11.flagcounter.com/count/cje8/bg_FFFFFF/txt_000000/border_CCCCCC/columns_5/maxflags_40/viewers_0/labels_0/pageviews_0/flags_0/" alt="Flag Counter" border="0" /></a> </div> <div class='clear'></div> </div><div class='widget ContactForm' data-version='1' id='ContactForm1'> <h2 class='title'>Contact Form</h2> <div class='contact-form-widget'> <div class='form'> <form name='contact-form'> <p></p> Name <br/> <input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' size='30' type='text' value=''/> <p></p> Email <span style='font-weight: bolder;'>*</span> <br/> <input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' size='30' type='text' value=''/> <p></p> Message <span style='font-weight: bolder;'>*</span> <br/> <textarea class='contact-form-email-message' cols='25' id='ContactForm1_contact-form-email-message' name='email-message' rows='5'></textarea> <p></p> <input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-form-submit' type='button' value='Send'/> <p></p> <div style='text-align: center; max-width: 222px; width: 100%'> <p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'></p> <p class='contact-form-success-message' id='ContactForm1_contact-form-success-message'></p> </div> </form> </div> </div> <div class='clear'></div> </div> <div class='widget HTML' data-version='1' id='HTML501'> <h2 class='title'>Feature Post</h2> <div class='widget-content flexslider' id='slider'> <ul class='slides'> <script> document.write("<script src=\"/feeds/posts/default/-/?max-results="+numposts3+"&orderby=published&alt=json-in-script&callback=postfeature\"><\/script>"); </script> </ul> </div> <div class='clear'></div> </div><div class='widget Label' data-version='1' id='Label100'> <h2>Tags</h2> <div class='widget-content cloud-label-widget-content'> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Arrays%20in%20C'>Arrays in C</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Blogging%20tips'>Blogging tips</a> <span class='label-count' dir='ltr'>(7)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Class'>Class</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Constructor'>Constructor</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-5'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Data%20Structures'>Data Structures</a> <span class='label-count' dir='ltr'>(10)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Facebook'>Facebook</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Functions'>Functions</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Google%20Adsense'>Google Adsense</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Graphics%20in%20C'>Graphics in C</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/if%20else'>if else</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Inheritance'>Inheritance</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/java'>java</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Java%20simple'>Java simple</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/LOOPS'>LOOPS</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Loops%20in%20C'>Loops in C</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Online%20earning'>Online earning</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Payoneer'>Payoneer</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-3'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Pointers'>Pointers</a> <span class='label-count' dir='ltr'>(3)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Pointers%20in%20C'>Pointers in C</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-2'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Simple'>Simple</a> <span class='label-count' dir='ltr'>(2)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Simple%20C%20Programs'>Simple C Programs</a> <span class='label-count' dir='ltr'>(6)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Switch%20cases'>Switch cases</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/switch%20statement%20in%20C'>switch statement in C</a> <span class='label-count' dir='ltr'>(1)</span> </span> <span class='label-size label-size-4'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Technology'>Technology</a> <span class='label-count' dir='ltr'>(5)</span> </span> <span class='label-size label-size-1'> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/twitter'>twitter</a> <span class='label-count' dir='ltr'>(1)</span> </span> <div class='clear'></div> </div> </div><div class='widget BlogArchive' data-version='1' id='BlogArchive2'> <h2>Blog Archive</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive2_ArchiveList'> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2015/'> 2015 </a> <span class='post-count' dir='ltr'>(11)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2015/01/'> January </a> <span class='post-count' dir='ltr'>(11)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/'> 2014 </a> <span class='post-count' dir='ltr'>(43)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/11/'> November </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/10/'> October </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/06/'> June </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/05/'> May </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/04/'> April </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/03/'> March </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/02/'> February </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2014/01/'> January </a> <span class='post-count' dir='ltr'>(13)</span> <ul class='posts'> <li><a href='https://4everprogramming.blogspot.com/2014/01/how-to-add-seo-friendly-title-to-blgger.html'>How to add SEO friendly Title to Blogger</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/how-to-use-smileys-and-emotions-on.html'>How to use smileys and emotions on facebook</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/blogging.html'>Blogging</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/google-adsense.html'>Google Adsense</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/how-to-run-graphics-program-using-turbo.html'>How to run graphics program using turbo C</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/simple-c-program-to-calculate-area-of.html'>Simple C program to calculate area of circle r1 an...</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/simple-c-program-to-convert-celcius.html'>Simple C Program to convert the Celsius value to F...</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/what-is-pointer-and-why-pointers-are.html'>What is pointer and why pointers are used in C pro...</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/c-program-to-print-from-1-to-10-using.html'>C Program to print from 1 to 10 using while loop</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/program-to-find-hotness-and-coldness-of.html'>Program to find Hotness and Coldness of temperatur...</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/simple-program-to-add-three-integers.html'>Simple Program to add three integers</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/program-to-make-simple-calculator-using.html'>Switch Statements</a></li> <li><a href='https://4everprogramming.blogspot.com/2014/01/your-first-c-program.html'>Your first C Program</a></li> </ul> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2013/'> 2013 </a> <span class='post-count' dir='ltr'>(7)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2013/12/'> December </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2013/11/'> November </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://4everprogramming.blogspot.com/2013/08/'> August </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div><div class='widget Label' data-version='1' id='Label1'> <h2>Labels</h2> <div class='widget-content list-label-widget-content'> <ul> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Arrays%20in%20C'>Arrays in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Blogging%20tips'>Blogging tips</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Class'>Class</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Constructor'>Constructor</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Data%20Structures'>Data Structures</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Facebook'>Facebook</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Functions'>Functions</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Google%20Adsense'>Google Adsense</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Graphics%20in%20C'>Graphics in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/if%20else'>if else</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Inheritance'>Inheritance</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/java'>java</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Java%20simple'>Java simple</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/LOOPS'>LOOPS</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Loops%20in%20C'>Loops in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Online%20earning'>Online earning</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Payoneer'>Payoneer</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Pointers'>Pointers</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Pointers%20in%20C'>Pointers in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Simple'>Simple</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Simple%20C%20Programs'>Simple C Programs</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Switch%20cases'>Switch cases</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/switch%20statement%20in%20C'>switch statement in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Technology'>Technology</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/twitter'>twitter</a> </li> </ul> <div class='clear'></div> </div> </div><div class='widget Label' data-version='1' id='Label2'> <h2>Labels</h2> <div class='widget-content list-label-widget-content'> <ul> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Arrays%20in%20C'>Arrays in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Blogging%20tips'>Blogging tips</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Class'>Class</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Constructor'>Constructor</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Data%20Structures'>Data Structures</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Facebook'>Facebook</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Functions'>Functions</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Google%20Adsense'>Google Adsense</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Graphics%20in%20C'>Graphics in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/if%20else'>if else</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Inheritance'>Inheritance</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/java'>java</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Java%20simple'>Java simple</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/LOOPS'>LOOPS</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Loops%20in%20C'>Loops in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Online%20earning'>Online earning</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Payoneer'>Payoneer</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Pointers'>Pointers</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Pointers%20in%20C'>Pointers in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Simple'>Simple</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Simple%20C%20Programs'>Simple C Programs</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Switch%20cases'>Switch cases</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/switch%20statement%20in%20C'>switch statement in C</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/Technology'>Technology</a> </li> <li> <a dir='ltr' href='https://4everprogramming.blogspot.com/search/label/twitter'>twitter</a> </li> </ul> <div class='clear'></div> </div> </div><div class='widget HTML' data-version='1' id='HTML1'> <h2 class='title'>Recent Posts</h2> <div class='widget-content'> </div> <div class='clear'></div> </div></div> <table border='0' cellpadding='0' cellspacing='0' class='section-columns columns-2'> <tbody> <tr> <td class='first columns-cell'> <div class='sidebar no-items section' id='sidebar-right-2-1'> </div> </td> <td class='columns-cell'> <div class='sidebar no-items section' id='sidebar-right-2-2'> </div> </td> </tr> </tbody> </table> <div class='sidebar no-items section' id='sidebar-right-3'> </div> </aside> </div> </div> </div> <div style='clear: both'></div> <!-- columns --> </div> <!-- main --> </div> </div> <div class='main-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> <footer> <div class='footer-outer'> <div class='footer-cap-top cap-top'> <div class='cap-left'></div> <div class='cap-right'></div> </div> <div class='fauxborder-left footer-fauxborder-left'> <div class='fauxborder-right footer-fauxborder-right'></div> <div class='region-inner footer-inner'> <div class='foot no-items section' id='footer-1'></div> <table border='0' cellpadding='0' cellspacing='0' class='section-columns columns-2'> <tbody> <tr> <td class='first columns-cell'> <div class='foot no-items section' id='footer-2-1'></div> </td> <td class='columns-cell'> <div class='foot no-items section' id='footer-2-2'></div> </td> </tr> </tbody> </table> <!-- outside of the include in order to lock Attribution widget --> <div class='foot section' id='footer-3' name='Footer'><div class='widget Attribution' data-version='1' id='Attribution1'> <div class='widget-content' style='text-align: center;'> Awesome Inc. theme. Powered by <a href='https://www.blogger.com' target='_blank'>Blogger</a>. </div> <div class='clear'></div> </div></div> </div> </div> <div class='footer-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </footer> <!-- content --> </div> </div> <div class='content-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </div> <script type='text/javascript'> window.setTimeout(function() { document.body.className = document.body.className.replace('loading', ''); }, 10); </script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/1704033933-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY4CK3boWVHPv96G5G99grhGf95rhg:1740211117228';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d2987092739882673844','//4everprogramming.blogspot.com/2014/01/','2987092739882673844'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '2987092739882673844', 'title': '4ever Programming Solutions', 'url': 'https://4everprogramming.blogspot.com/2014/01/', 'canonicalUrl': 'http://4everprogramming.blogspot.com/2014/01/', 'homepageUrl': 'https://4everprogramming.blogspot.com/', 'searchUrl': 'https://4everprogramming.blogspot.com/search', 'canonicalHomepageUrl': 'http://4everprogramming.blogspot.com/', 'blogspotFaviconUrl': 'https://4everprogramming.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': 'UA-47892534-1', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x224ever Programming Solutions - Atom\x22 href\x3d\x22https://4everprogramming.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x224ever Programming Solutions - RSS\x22 href\x3d\x22https://4everprogramming.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x224ever Programming Solutions - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/2987092739882673844/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/c320e3f9c6626331', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'archive', 'pageName': 'January 2014', 'pageTitle': '4ever Programming Solutions: January 2014', 'metaDescription': 'This blog is designed to help you learn programming languages Java,C or C++. C,C++ and java compiled programs.'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'Awesome Inc.', 'localizedName': 'Awesome Inc.', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': false, 'variant': 'renewable', 'variantId': 'renewable'}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': '4ever Programming Solutions', 'description': 'This blog is designed to help you learn programming languages Java,C or C++. C,C++ and java compiled programs.', 'url': 'https://4everprogramming.blogspot.com/2014/01/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': false, 'isArchive': true, 'isLabelSearch': false, 'archive': {'year': 2014, 'month': 1, 'rangeMessage': 'Showing posts from January, 2014'}}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2332438401-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/1964470060-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'sidebar-right-1', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'sidebar-right-1', document.getElementById('HTML6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'sidebar-right-1', document.getElementById('PopularPosts1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_StatsView', new _WidgetInfo('Stats1', 'sidebar-right-1', document.getElementById('Stats1'), {'title': 'Total Pageviews', 'showGraphicalCounter': true, 'showAnimatedCounter': true, 'showSparkline': false, 'statsUrl': '//4everprogramming.blogspot.com/b/stats?style\x3dBLACK_TRANSPARENT\x26timeRange\x3dALL_TIME\x26token\x3dAPq4FmA8PgMp_zN1cV_NMAyvmEd6YZNviHHdDwhe191dFu9_QD_9YSQEsyZrO8uxq5sroz8cdRYPZ5zbYFTGejfB0BiOUZZtjg'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image3', 'sidebar-right-1', document.getElementById('Image3'), {'resize': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'sidebar-right-1', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ContactFormView', new _WidgetInfo('ContactForm1', 'sidebar-right-1', document.getElementById('ContactForm1'), {'contactFormMessageSendingMsg': 'Sending...', 'contactFormMessageSentMsg': 'Your message has been sent.', 'contactFormMessageNotSentMsg': 'Message could not be sent. Please try again later.', 'contactFormInvalidEmailMsg': 'A valid email address is required.', 'contactFormEmptyMessageMsg': 'Message field cannot be empty.', 'title': 'Contact Form', 'blogId': '2987092739882673844', 'contactFormNameMsg': 'Name', 'contactFormEmailMsg': 'Email', 'contactFormMessageMsg': 'Message', 'contactFormSendMsg': 'Send', 'contactFormToken': 'AOuZoY6_pG8UjgpZqo6PFhZNug1x4HYcNQ:1740211117243', 'submitUrl': 'https://www.blogger.com/contact-form.do'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML501', 'sidebar-right-1', document.getElementById('HTML501'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label100', 'sidebar-right-1', document.getElementById('Label100'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive2', 'sidebar-right-1', document.getElementById('BlogArchive2'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'sidebar-right-1', document.getElementById('Label1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label2', 'sidebar-right-1', document.getElementById('Label2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'sidebar-right-1', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer-3', document.getElementById('Attribution1'), {}, 'displayModeFull')); </script> </body> </html>