Friday, April 15, 2011

Change your Gmail Background by your Own Image.


New Sexy  Features From Gmail.




Change your Gmail Background by your Own Image.


Following are Steps To set background Image.

1. Go To Settings.
2.Select Themes  Tab.
3.Select Create your Own Theme.

4.Select  Background Image.
5.Save.
6. Close.
7. Enjoye.........

Choice is Yours.........Cheers.


Logic Cafe Team

Difference between C & C++.


Difference between C & C++.

Introduction:- C programming language was designed by Dennies Ritchie in the early 1970s at Bell Laboratories. It was first used system  implementation language for the nascent Unix operating system. The main reason to devised C was to overcome the limitations of B. It was Derived from the type-less language BCPL (Basic Combined Programming Language). C was the evolution of B and BCPL by incorporating type checking. It was originally intended for use in writing compilers for other languages.


Introduction:- C++ was devised by Bjarne Stroustrup in 1983 at Bell Laboratories. It is an extension of C by adding some enhancements to C language. Bjarne combined the simula's(a language designed for making simulations, created by Ole-Johan Dahl and Kristen Nygaard) features of object oriented and the efficiency of C. The new features added to language are templates, namespaces, exception handling and use of standary library. 


1.C is a procedure oriented language 
             C++ is a object oriented language.
2. C has a predefined data types and user cannot create  its own data type.
           where c++ can create its own data types through classes.
3. C uses printf and scanf  function for read and write the data.
           In C++ ,we uses cout, cin and bitwise left sift and right shift operator for read and write the data.
4. C uses header file stdio.h for input/output.
            In C++,we uses iostream.h for input /output.It is a stream based input/output.
5. C does not  uses class.
          In C++,we mostly uses class. there are in  data member and member function. it also used public and private i.e. acess specifiers.
6.  C can't use polymorhphism.
          In C++, uses polymorhphism.that means poly - many and marph- form.It ability to take more than forms.
7. C  can't uses inheritance.
          in C++,It has more important concept of inheritance .It provide the reuseablity.
8. C  can't uses  constructor ,deconstructor.
          In C++,we use the constuctor and deconstuctor normaly.It is automatically called when the object is created.
9. C uses malloc ,calloc and free for dynamically memory allocation.
          In C++, we uses new and delete for memory allocate and dellocate.
10. C uses 32 keywords.
           In C++ uses 48 keywords.
11. C has top-down approach.
         In C++ has bottom up approach.
10. C has no security.
            In C++ there are a  lot of security concept for securing the data like Data hiding and Abstraction.
11. C has no use of Encapsulation concept.
           In C++, there are used the concept of Encapsulation ,that  wrapping up of data into a single unit .
12. C has not used friend function.
           In c++, use the friend function that access the private data members .
13.C  we can intialize  the variable above the main function  or anywhere.
           In C++,we can't intialize the variable globel. we can only intialize the variable where we need in the function.
 14.C ,it has not use of scope resolution.
           In c++,we almost use the scope resolution. It shows that the function contain in which class.The symbol of scope resolution "::"
 15.C  the extension is .c for saving in turbo c.
             In C++ ,the extension is .cpp . 
                           
                            Harish  Garg.
                   Software garg. at Landra.
                    hanugargmca@gmail.com


Choice  is Yours...Cheers


Logic Cafe Team

Thursday, April 14, 2011

FaceBook KeyBoard Shortcuts with Mozila Chrome


Alt+1 : Go to Home
Alt+2 : To view the Wall tab
Alt+3 : To pull down the Friends Requests list
Alt+4 : To retrieve the Messages list
Alt+5 : To call out the Notification list
Alt+6 : Account setting page
Alt+7 : Account privacy configuration.
Alt+8 : Facebook fans group page
Alt+9 : Facebook?s Statement of Rights and Responsibilities
Alt+0 : Facebook Help Center
Alt+m : Create new message
Alt+? : Cursor in the Search Box

Choice is Yours....Cheers


Logic Cafe Team

Monday, April 11, 2011

FaceBook KeyBoard Shortcuts with Mozila FireFox

hii  here  is a facebook keyboard  shortcuts with Mozila   FireFox....

Shift+Alt+1 : Go to Home
Shift+Alt+2 : To view the Wall tab
Shift+Alt+3 : To pull down the Friends Requests list
Shift+Alt+4 : To retrieve the Messages list
Shift+Alt+5 : To call out the Notification list
Shift+Alt+6 : My Account setting page
Shift+Alt+7 :  My Account privacy configuration.
Shift+Alt+8 : Facebook fans group page
Shift+Alt+9 : Facebook?s Statement of Rights and Responsibilities
Shift+Alt+0 : Facebook Help Center
Shift+Alt+m : Creat a new message
Shift+Alt+? : Cursor in the Search Box

Google Chrome's user don't be sad   Our team   provide you   shortcuts of google chrome as soon as possible.

Choice is Yours.....Cheers


LOGIC CAFE TEAM

Thursday, April 7, 2011

Add New column in Table

To Add New Column In Table  . Use Following Sql Query

Query:- " Alter table 'TableName'  Add Column 'CoulmnName' 'DataType'

Exp:-
Let Assume My Table name is TempTable and i want to add New Column with Name of EmpAdd

Query:  Alter table temptable add column empadd varchar(50)


Choice is yours...... Cheers

Kapil hasija