Showing posts from May, 2018
C if else Statement ! The if else statement is an extension of the simple If Statement .The general form is if the test expression is true ,then the true -block statement (s), immediately following the if statements are ex…
Find The Largest of Three Number In This Example the Largest Number Among Three Number (The user By Entered). Code: using System; namespace Three_Number { class Program { static void Main(str…
Here’s how you use mobile phones to learn Computer Programming when you have a Android Phone Or Desktop. Learn to code for FREE! Anytime and Anywhere, on Any Device This app name is Solo -Learn. Sololearn Every One …
History of C++ Programming Language C++ is a general-purpose programming language. C++ is used to create computer programs.Anything form art application, music players and even video game. It has imperative, objec…
Hunter Bird in River Reflection of this Bird ..😎😎😎 Hawk Eye Hunting Fish - Shikari Bok Pakhi - Hunter Bird hunting fish. A hawk (Bok) keeping eyes towards fishes and waiting for perfect moment to snatch the life of fish…
River and Boat of Bangladesh. River long water course that flows down a slope along a bed between banks. It originates from a 'source' and culminates to a sea or lake at its 'mouth' Most famous in Banglade…
Agriculture In Bangladesh Cow Is Famous Animal In Bangladesh ! Most famous in Village . Device: Redmi Note 4 Picture By : Spartacus Riad Edit By: Sayed Shaun Location : Bangladesh
Program to searching item in a list in python. Code: num=[98,76,67,54,34,90,55,34,65,33,12,88,70,76,54] loc=-1 print("total item:",num) item=int(input(" Enter your searching item: ")) for …
Program to Bubble Sorting a List in Python.. Code of Python. def bubbleSort(alist): for passnum in range(len(alist)-1,0,-1): for i in range (passnum): if alist[i]>alist[i+1]: …
Write a simple program to subtraction of two numbers in C# using System; namespace Subtraction { class Program { static void Main(string[] args) { int a = 20, b = 10, sub; …
C Program to Print an Integer (Entered by the User ). #include<stdio.h> void main () { int number; printf("Enter an Integer: "); // printf() dislpays the formatted output scanf(&…
Write a simple Program to Add two Integer numbers in C#. using System; namespace add { class Program { static void Main(string[] args) { int a = 10, b = 20, sum; sum…
Fast Program In C . #include<stdio.h> void main() { printf("Welcome Programming World!"); // printf() displays the string inside quotation } Output : How "Welcome Programming World !"…
First Program of C# Print Hello World Of C# 💛 using System; //Header File (// is Comment method). namespace Hello // namespace is divided any method. { public class Hello // public is used every …
Recommendation My Sir of Programming . Programming Ansi C Writer by E. Balagurusamy Introduction to Algorithms Writer by Cormen . Discrete Mathematics Writer by Rosen .
Some Features of Python: Python is a clear and powerful object-oriented programming language, comparable to Perl, Ruby, Scheme, or Java. Python: Easy GUI Programming Object Oriented Free and Open Source …
Welcome to Python 😐 Introduction 😉 Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic…
TABLE OF CONTENTS C Tutorials What is C Programming? Reasons to Learn C Your First C Program Recommended Books Things to Remember
Learn Java Programming Welcome to Java.✋ Java is a high level ,modern programming language designed by the early 1990 s by Sun Micorsystem , and currently owned by Oracle. Java is platform Independent,which means th…
C Programming 💙 C is a powerful general-purpose programming language. It is fast, portable and available in all platforms. If you are new to programming, C is a good choice to start your programming journey. Thi…
This is History of C programming Language. C is closely associated with Unix Operating system Development of Unix System The PDP-11 version of Unix system was written in assembly language. Assembly languages are low-…