If you are thinking of learning to code, the language you decide to pick up first has a lot to do with what you are…
Microsoft Office package is one of the most widely used office suites. Its main components are Microsoft Word, Microsoft Excel and Microsoft Powerpoint along with…
10 Best Java IDEs for Programmers: Java IDE is a software application that allows programmers to write and debug Java programs more easily and quickly…
#include<stdio.h> #include<math.h> int main() { int s1, s2, angle; float area; printf(“nEnter Side1 : “); scanf(“%d”, &s1); printf(“nEnter Side2 : “); scanf(“%d”, &s2); printf(“nEnter included…
#include<stdio.h> int main() { int rad; float PI = 3.14, area, ci; printf(“nEnter radius of circle: “); scanf(“%d”, &rad); area = PI * rad *…
Introduction to Java programming This tutorial explains the installation and usage of the Java programming language. It also contains examples for standard programming tasks. You…
Introducing — Code ! A new and open zone for budding programmers like me and for amateur developers. I believe that writing codes is not a rocket science, it’s…
Facebook has designed a new programming language called Hack but it has nothing to do with hacking. It lets programmers build complex websites and other…
Write a Program to convert decimal to OCTAL in C Language Decimal to octal conversion method: Step 1: Divide the original decimal number by 8…
Decimal to binary conversion in c programming language. C source code for decimal to binary conversion: Algorithm: Binary number system: It is base 2 number…