₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,630 members, 8,422,934 topics. Date: Tuesday, 09 June 2026 at 05:42 AM

Toggle theme

Akbarthegreat's Posts

Nairaland ForumAkbarthegreat's ProfileAkbarthegreat's Posts

1 (of 1 pages)

ProgrammingRe: Which Website Do You Download Your Ebooks From ? by akbarthegreat: 9:27pm On Sep 25, 2016
Check this website for C programming language tutorial.
http://www.techcrashcourse.com/2016/02/c-programming-language-crash-course.html
ProgrammingRe: Where To Learn Programming? by akbarthegreat: 9:24pm On Sep 25, 2016
Check this website http://www.techcrashcourse.com . It is very good for beginners. It contains tutorial and sample programs of c, c++, java, data structures etc with explanation and sample input output.
ProgrammingRe: Official thread for C programming by akbarthegreat: 9:09pm On Sep 25, 2016
Here are some interesting facts about C programming language.

C language was originally developed by Dennis Ritchie between 1969 and 1973 at AT&T Bell Labs.
The UNIX Operating system was totally written in C programming language by 1973.
C Language was originally developed for creating system applications that direct interacts to the hardware devices.
B language is the precursor of C.
C is considered to be the mother of all today's modern programming languages.
http://www.techcrashcourse.com/2015/05/c-programming-language-introduction.html
Literature/Writing AdsRe: Ebooks On Programming and Other Fields by akbarthegreat: 9:05pm On Sep 25, 2016
I found this tutorial very useful for new programmers. It contains lots of sample programs on c, c++, java, data structures etc. I will strongly recommend this book for new coders. http://www.techcrashcourse.com
ProgrammingRe: Without Using Pow Function In C by akbarthegreat: 8:55pm On Sep 25, 2016
We can find the power of a number without using pow function and using recursion.
Let power(a, b) means ab.
If b is even : power(a, b) = power(a, b/2)*power(a, b/2);
if b is odd : power(a, b) = power(a, b/2)*power(a, b/2)*a;
For example:
28 = 24 * 24;
29 = 24 * 24 * 2;
Source : http://www.techcrashcourse.com/2014/10/c-program-calculate-power-of-number.html

1 (of 1 pages)