4.23.2017

What is IDE - Top 10 IDE for C/C++



IDE is stand for integrated development Environment. An IDE is a software application that provide a Graphical User Interface (GUI) to the programmer.


An ideal IDE's should be consists a source code editor, a debugger, a compiler and compilation toolbar.


All modern and advanced IDE's have AI (Artificial Intelligence). When a programmer coding, then these IDE's completed the coding automatically. After coding completed, IDE's compile the program/software to checking for errors, if there are find any bug, then IDE reported it in GUI way (like as coloring, formatting, etc.) so programmer quick fix the issue and completed the program.



Today there are many IDE's. The top 10 popular IDE's for C/C++ Language as:

3.27.2017

Spiral Continuous two digit number pattern C Program

Q. Write a C program to make a Spiral tow digit number pattern as :

     1 2
     4 3
     5 6
     8 7
     9 10
    12 11

Ans.

Process of Spiral Continuous two digit number pattern C Program
Figure: Spiral Continuous two digit number
pattern C Program

/*spiral continuous tow digit number pattern C program source code*/
#include<stdio.h>
int main()
{
 int num,r,c,p,q,x=1;
 printf("Enter No. Of Rows : ");
 scanf("%d", &num);

2.19.2017

What is the difference between Sleep and Hibernate mode in windows laptop computer


Both sleep and hibernate mode reduce the power consumption.

Difference between Sleep & Hibernate Mode
Figure: Difference between
Sleep & Hibernate Mode

The main difference comes when system/computer loose his power(dis-charge in case laptop),
then in sleep mode all unsaved and open data completely lost but in hibernate mode all the unsaved and open data not lost, it is saved on the disk.



What is the meaning of Hibernate Mode in Windows Computer

Hibernate mode is power saving options in windows.

What is the meaning of Hibernate Mode in Windows Computer
Figure: Hibernate Mode in W7
Like as sleep mode, Hibernate mode also reduce the light consumption.

When you applied hibernate mode, then it store all unsaved and open data in the RAM. And if the computer lost all his power then all unsaved and open data not lost. It is still saved on the disk.


What is the ideal time to applied hibernate mode in windows computer?

2.04.2017

What is the meaning of Sleep Mode in Windows computer

Sleep mode is power saving options in the computer. 
What is the mean of Sleep Mode in Windows 7
Figure: Sleep Mode in Windows 7

Sleep mode is reduce the light consumption.

When you applied sleep mode, then it store all unsaved and open data in the RAM. And if the computer lost all power then all unsaved  and open data will be lost.

So here you can say that sleep mode is like a volatile memory.

What is the ideal time to applied sleep mode in computer?

1.17.2017

Number Rhombus Pattern C Program

Q. Write a C program to print the following number rhombus pattern as:

    ********
    ***22***
    **2222**
    *222222*
    22222222
    *222222*
    **2222**
    ***22***
    ********

Ans.

/* c program for number rhombus pattern source code*/
#include<stdio.h>
int main()
{

9.10.2016

C Pyramid Number Pattern

Q. Write a C program to print the following C Pyramid Number Pattern program as:

     11
     11 10 11
     11 10 9 10 11
     11 10 9  8  9 10 11

Ans.