This is a official website of instagram page @coding_planet

Friday, February 22, 2019

C Introduction (Post 1)

               C Language Introduction C is a procedural programming language. It was initially developed by Dennis Ritchie between 1969 and 1973. It was mainly developed as a system programming language to write operating system. The main features of C language include low-level access to memory, simple...
Share:

Saturday, November 10, 2018

Add Two Numbers (Python #1)

  Python  Program To Add Two Numbers  Input: num1 = 4.7 num2 = 8.3 sum = float(num1) + float(num2) print('The sum of {0} and {1} is {2}'.format(num1, num2, sum)) Output: The Sum Of 4.7 And 8.3 Is 13 ...
Share:

Add Two Numbers (Java #1)

  Java  Program To Add Two Numbers  Input: public class AddTwoIntegers { public static void main(String[] args) { int first = 15; int second = 10; int sum = first + second; System.out.println("The sum is: " + sum); } } Output: Enter Two Numbers: 15...
Share:

About

Blogger templates

3/recent/post-list