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

/** C PROGRAM TO PRINT LOVE SYMBOL **/

Explanation : Here we are printing the ASCII value of 3 . Which gives a love shape symbol. you can also print directly by writhing the following code.  printf(” %c “,3); Output:

/*** C PROGRAM TO CONCATENATE TWO GIVEN STRINGS ***/

Output:

Many times I came across a scenario, when i was searching on net about any contents, I find many things interesting but I don’t have time to go through that pages. So, I used to save the url links of those sites or web pages for future. we can also… Continue Reading BEST WAY TO SAVE URL LINKS or WEB ADDRESS ON YOUR PC

Operating System(O.S) is a software program or a set of programs that provides the medium of communication between user and hardware of the computer and helps the user to perform various tasks on computer. It allows to run applications or programs on it.-> Operating System is a software and it… Continue Reading Definition of OPERATING SYSTEM