Syntax of Simple if-else —————————— if(condition) { statement1; statement2; . . . statement n; } else { statement1; statement2; . . . statement n; } Program:

Output: Explanation: In the above program, if statements are executed if the condition is true. otherwise else statements are executed. And else statements are… Continue Reading C Program to implement Simple if else

Syntax of Simple-if —————————- if(condition) { statement1; statement2; . . . statement n; } Simple C Program to understand Simple if:

output: Explanation: In the above program, the control enters into the if block only if the condition is true. And the statement printf(“\n program ends \n\n”); is executed… Continue Reading C Program to implement Simple if statement

DIFFERENCE BETWEEN MICROSOFT’S .NET AND SUN’S JAVA : .NET : ->It is cost effective ->Supports Language independency, supports multiple languages . ->Offers IDE as Visual Studio by Microsoft. ->Offers easiest and fastest application development, which indirectly reduces the cost of the software. ->Designing the UI is very much easy with… Continue Reading DIFFERENCE BETWEEN MICROSOFT’S .NET AND SUN’S JAVA

Difference Between Programming Language and Technology: Technology is developed for a particular purpose..For example, For development of web related applications, you have technology called “ASP.NET”. For development of DataBase related applications, we have another technology called “ADO.NET” . But the Technology, doesn’t offer any specific rules for writing the programs. But… Continue Reading DIFFERENCE BETWEEN PROGRAMMING LANGUAGE AND TECHNOLOGY

original post WordPress is providing a very simple way to post code snippets on your wordpress blog.  It provides a syntax highlighting for the code . Just select Text Option in your post composing window, and  paste your source code between the tags as given below. Example, posting the  csharp… Continue Reading Add / INSERT / POST CODE SNIPPETS ON WORDPRESS BLOG

original post Many of the bloggers don’t know how to post  code in their blogs. They think it is a big task, only experts can do. when i was a beginner in blogging i too thought in the same way. But finally i found out the very simple, and easy… Continue Reading Add / INSERT / POST CODE SNIPPETS ON BLOGGER

Create the table as follows

Here while inserting there is no need to pass values of Sno, Student_Id column. Then insert the fields like as shown below.

Now displaying the inserted records

you can see the inserted records below

C PROGRAM TO IMPLEMENT QUEUE OPERATIONS USING ARRAY   original post link: http://cprogramsblog.blogspot.in/2012/11/c-program-to-implement-queue-operations.html #include<stdio.h> #include<conio.h> #define MAX 10 int queue[MAX], front = –1, rear = –1; void Insert_Element(); void Delete_Element(); void Display_Queue(); void Empty_Queue();   int main() { int option; printf(“>>> c program to implement queue operations <<<“); do { printf(“\n\n 1.Insert an element”); printf(“\n 2.Delete an element”); printf(“\n 3.Display queue”); printf(“\n 4.Empty queue”); printf(“\n 5.Exit”); printf(“\n Enter your choice:… Continue Reading C PROGRAM TO IMPLEMENT QUEUE OPERATIONS USING ARRAY

Visual studio 2010 installation installs a set of components on your pc. Visual studio installation is similar as any other software . The list of softwares that are installed automatically with the installation of visual studio  are listed below.. During the installation, select typical installation to install all the components… Continue Reading Microsoft Visual Studio 2010 installation

Microsoft Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop console and graphical user interface applications along with Windows Forms applications, web sites, web applications, and web services in both native code together with managed code for all platforms supported by Microsoft Windows, Windows Mobile, Windows CE, .NET Framework, .NET Compact Framework and Microsoft Silverlight. Visual Studio includes a code editor supporting IntelliSense as well as code refactoring. The integrated debugger works both as a source-level debugger… Continue Reading Microsoft Visual Studio

/*program for implementing Stack Operations*/ #include<stdio.h> #include<conio.h> int stack[10],top=-1; //global declaration void push();  //declaring functions void pop(); void display(); void main() { int ch; printf(“>>> StackOperations <<<\n\n“); do { printf(“\n 1.Push”); printf(“\n 2.Pop”); printf(“\n 3.Display”); printf(“\n 4.Exit”); printf(“\n Enter your choice: “); scanf(“%d”,&ch); if(ch==1) push(); else if(ch==2) pop(); else if(ch==3)… Continue Reading C PROGRAM TO IMPLEMENT STACK OPERATIONS

A relational database management system (RDBMS) is a program that lets you create, update, and administer a Relational Database. Most commercial RDBMS’s use the Structured Query Language (sql) to access the database. The leading RDBMS products are Oracle, IBM’s DB2 and Microsoft’s SQL Server. Despite repeated challenges by competing technologies, as well… Continue Reading What is Relational Database Management Systems ( RDBMS )

Online compilers are solving many problems that are facing by the programmers while they are working under circumstances like different variety of devices,locations and with a team of several members. They made the programmers easy to work, organize and exchange their code with their other members. With Online compiler a… Continue Reading What is Online Compiler

Often happens, when we are uninstalling any programs/ software in our PC , we uninstall some other software by mistake. In such case, if you want to restore the uninstalled software in your PC or if u want to know the uninstalled software in your PC then, you have to… Continue Reading HOW TO FIND THE UNINSTALLED PROGRAMS / SOFTWARES IN YOUR COMPUTER

original post FeedJit is the Free Live Traffic Feed lets you see friends and visitors as they arrive on your blog or website Click “Real-time View” at the bottom of the Feed to watch your traffic in real-time. Feedjit is the ultimate live view of what is happening on your… Continue Reading How to Add FeedJit Live Visitors For WordPress / Blogger Blog

The .docx extension is for the Ms-Word 2007 File and .doc extension is for the Ms-word 97-2003 or earlier Files. Many Users who are using Ms-word 2007 for the first time, they get confuse about the difference between the .doc and .docx files. Actually when i was using ms-office 2007 for… Continue Reading Difference between .doc and .docx extension files

-> Microsoft SQL SERVER is a relational database management system (RDBMS) used to store large amount of data. -> Its is also called as “SEQUEL SERVER”. -> SQL SERVER is a platform dependent,  because it works only in windows operating systems like Windows XP, Windows Vista, Windows7,Windows server 2003 and… Continue Reading MICROSOFT SQL SERVER