How To Use Instagram Through Window 8

How To Use Instagram Through Window 8

Your Website Title (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script',Continue reading
On 2/19/2015 12:57:00 am

Square Shape Code

Square Shape Code

#include<iostream.h>using namespace std;int main(){     for(int i=1;i<=10;i++)        {            cout<<"*";        }            cout<<endl;for(int j=1;j<=5;j++)    {    for(int k=1;k<=1;k++)        {               Continue reading
On 7/08/2014 01:08:00 pm

Code Of This Shape . 1***** 12**** 123*** 1234** 12345* 123456

Code Of This Shape . 1***** 12**** 123*** 1234** 12345* 123456

#include<iostream.h>#include<conio.h>int main(){   int b,c,d;   for(int b=1; b<=6; b++)   {      for(int c=1,a=1; c<=b; c++)      {       cout<<a; a++;      }      for(int d=5; d>=b; d--)      {cout<<"*";      }cout<<endl<<endl;   }   getch();}Continue reading
On 7/07/2014 07:51:00 pm

Write a program in C++ to find the Factorial by recursive function.

Write a program in C++ to find the Factorial by recursive function.

Write a program to find the Factorial by recursive function. This function will use recursion to find factorial of a given number. You can also calculate factorial a number with non recursive method for. Click Here to get code of non recursive method toContinue reading
On 7/07/2014 01:22:00 pm

Write a program in c language to reverse a string in reverse order without using strrev function or any other function

Write a program in c language to reverse a string in reverse order without using strrev function or any other function

#include <stdio.h>#include <string.h>#include <conio.h>int main(){ char str[100], ch, str2[100]; int count = 1, i, count2 = 0; printf("Enter String: "); while(ch != 13) { ch = getche(); str[count] = ch; count++; }      for(i=0; i<=99; i++)    { str2[i] = str[i]; }   Continue reading
On 7/06/2014 05:09:00 pm

Write a program in c language to reverse a string by using strrev function or ptrint a string in reverse order

Write a program in c language to reverse a string by using strrev function or ptrint a string in reverse order

#include <stdio.h>#include <string.h>#include <conio.h>int main(){   char str[100];   printf("Enter a string to reverse: ");   gets(sttr);   strrev(str);  //function to reverse a string   printf("Reverse of entered string is: %s\n", str);   getch();}Continue reading
On 7/06/2014 04:43:00 pm

Write a program in c language to compare two strings by using pointers.

Write a program in c language to compare two strings by using pointers.

#include <stdio.h>#include <conio.h>int compare_strings(char*, char*);int main(){    char str1[100], str2[100], result;    printf("Enter first string: ");    gets(str1);    printf("Enter second string: ");    gets(str2);    result = compare_strings(str1, str2);    if ( result == 0 )       printf("Strings are same.\n");    else Continue reading
On 7/06/2014 04:38:00 pm