Flipkart

Saturday 30 August 2014

VISUAL STUDIO 2012 ULTIMATE WITH KEY

Microsoft Visual Studio 

An integrated development environment (IDE) from Microsoft. It is used to develop computer programs for Microsoft Windows, as well as web sites, web applications and web services. Visual Studio uses Microsoft software development platforms such as Windows API, Windows Forms, Windows Presentation Foundation, Windows Store and Microsoft Silver light. It can produce both native code and managed code.
Visual Studio includes a code editor supporting Intelli Sense as well as code refactoring. The integrated debugger works both as a source-level debugger and a machine-level debugger. Other built-in tools include a forms designer for building GUI applications, web designer, class designer, and database schema designer. It accepts plug-ins that enhance the functionality at almost every level including adding support for source-control systems (like Subversion) and adding new toolsets like editors and visual designers for domain-specific languages or toolsets for other aspects of the software development life cycle(like the Team Foundation Server client: Team Explorer).
Visual Studio supports different programming languages and allows the code editor and debugger to support (to varying degrees) nearly any programming language, provided a language-specific service exists. 

Built-in languages include 

  • C
  • C++ and C++/CLI (via Visual C++)
  • VB.NET (via Visual Basic .NET)
  • C# (via Visual C#), and F# (as of Visual Studio 2010)


Support for other languages such as 


  • M
  • Python
  • Ruby 
  •  It also supports XML/XSLT, HTML/XHTML, JavaScript and CSS.

Supported Operating System

Windows 7 Service Pack 1, Windows 8, Windows Server 2008 R2 SP1, Windows Server 2012
·         Windows 7 SP1 (x86 and x64)
·         Windows 8 (x86 and x64)
·         Windows Server 2008 R2 SP1 (x64)
·         Windows Server 2012 (x64)

Hardware Requirements:

·         1.6 GHz or faster processor
·         1 GB of RAM (1.5 GB if running on a virtual machine)
·         10 GB of available hard disk space
·         5400 RPM hard disk drive

·         DirectX 9-capable video card that runs at 1024 x 768 or higher display resolution

Product keys For vb 2012 Ultimate

YKCW6-BPFPF-BT8C9-7DCTH-QXGWC
RBCXF-CVBGR-382MK-DFHJ4-C69G8
YQ7PR-QTHDM-HCBCV-9GKGG-TB2TM

CLICK HERE FOR DOWNLOAD : 


Tuesday 19 August 2014

C Programming

Points to remember While writing a C program

v  Every program requires main () function.


v  The execution of each function in a C program begins at the opening brace and ends are the corresponding closing curly brace.

                     Example

§     void main ()
§  {
§  Program statements;
§  }

v  C programs are written in lowercase.  Upper cases are used in defining Symbolic constants and output strings.

   Example

§  Const int PI = 3.14;
§  Printf(“  Hello Welcome To C Program”);

v  Statements must end in semicolon after main function

   Example

§  main()
§  {
§  Stament 1;
§  Statement 2;
§  }

v  Variables must be Declared for their types before it uses in program.

    Example

§  int age,
§  char name[12];

v  # include preprocessor must used to include header files for special functions.

     Example

§  #include<string.h>         // for the use of String manipulation
§  #include<math.h>          // for the use of formulas
§  These are the special functions strcmp(), Pow() Etc…

v  Braces are balanced when it uses to group multiple statements.

     Example

§  For (i=1;i<=4;i++)
§  {
§  For(j=1;j<=4;j++)
§  {
§  Printf(“hai\t”);
§  }
§  Printf(“\n”);
§  }