Basic Programming is C Programming Language. When you learn this language, all the programming Language is so easy to understand because its syntax is similar to all programming language. C, C++, Java, C# and so on having similar syntax. Printing Technique of Programming Languages C :- printf("Hello World"); C++ :- cout<<"Hello World"; Java :- System.out.println("Hello World"); ......................................................................... I personally preferred to learn this language.
Reverse of array element Reverse data in array. Like we Stored 'a' having 5 elements 2,44,75,89,67,11. Reverse and stored in another array variable, output 'b' contains 11,67,89,75,44,2. Program Output
FIBONACCI SERIES A Series of a numbers in which each number is the sum of the Previous numbers. Ex- 0, 1, 1, 2, 3, 5, 8, .............. Program: Fibonacci Series using while loop. Syntex of while Loop // declaration part while (condition) { // increment or decrement } Fibonacci Series Output: Output of Fibonacci Series
Comments
Post a Comment