1-10 of 49 Hubssort by Hot Best Latest

Fibonacci numbers sequence72

Fibonacci numbers sequence

What is Fibonacci Numbers? In math world, Fibonacci series is the number sequence in which each number is the sum of the two previous numbers. The sequence begins with 0 and 1. The next number would be sum of 0 & 1. This process will continue till nth number.

0 comments    how to
How to Reverse a Number?78

How to Reverse a Number?

In this tutorial we are going to learn reverse number program logic and how to reverse a number in C, C++, C-Sharp (C#) and java programming language. This programming example shows you how you can use math to reverse any number. Using this logic you can reverse number in any language you wish like C, C++, Java, C# etc. We will be using user defined function (UDF) or method to reverse number. You can use ReverseNumber() method/ function anywhere in program to reverse a number.

0 comments    while loop reverse number java
How to use time structure to display time in C.73

How to use time structure to display time in C.

Time in C is example of C program which displays current system time or digital clock and it’s dynamic clock which will keep it updated (synchronized) with system time. To understand this program you should have knowledge of structure, library function, header file and of course main function. Gettime(), time structure, calling function, time in c, clock in c

0 comments    c programming while loop kbhit
String and string pointer in C language78

String and string pointer in C language

String in C programming language is very interesting topic to learn. We all know about arrays but here we put that in good use. Even you can character (char) pointer for string. C has lots of inbuilt functions which can reverse a string, can get length of string etc. In this C tutorial you can learn about how to read string from keyboard, save string in string variable and display string on screen.

1 comment    c programming c language c string
Call by Value and Call by Reference in C Programming78

Call by Value and Call by Reference in C Programming

Call by value and call by reference is the most confusing concept among new C language programmer. I also struggled with this, the reason may be my teacher is not explaining it in simple words or I was dumb. Whatever the reason is; here I will try to explain it in simple word. Let’s start with classic example, classic example means whenever people talk about call by value or call by reference, they cite this example i.e. swapping of two variable.

3 comments    pointer call by value in c
Library Functions in C Programming Language76

Library Functions in C Programming Language

In this C language tutorial we will learn about library function available in C. Before I start explaining about library function let me refresh your idea about function. There are two type of function available in C, user defined functions, also know as UDF, and library functions.

1 comment    pow in c ceil in c sqrt in c
For Loop in C69

For Loop in C

Along with while loop and do-while loop, for loop is also part of C programming language. For many programmers, for loop seems to be easiest loop comparing other two loops (while and do-while loop). Mainly its structure (syntactically) makes it easy to use. Its easy syntax made it popular. Let’s take a look at for loop syntax.

9 comments    how to programming variable
Types of Loop in C Language71

Types of Loop in C Language

Loop is one of the important parts of C language and study of C language is incomplete without this. So let’s head towards completion of our knowledge about C language. As a dedicated C language leaner, right now you should have two questions. What is loop and why we need loop in our C program?

5 comments    how to programming language
Do While Loop in C and Difference Between While and Do While Loop73

Do While Loop in C and Difference Between While and Do While Loop

If you are looking for what is loop and why we use loop in c language then you can check my article on that topic. This article is entirely dedicated to do-while loop and its usage. I must tell you that do-while loop is similar to while loop but only one thing differentiate them. I will show that difference with example later.

4 comments    how to c programming
While Loop in C69

While Loop in C

I already explained what is loop and why we use loop in c language, and I am not going to repeat that here again. So we will start with while loop explanation. While loop is one of the simple loop available in C language.It’s very easy to use, lets check its syntax first and then one simple program.

4 comments    variable c programming compiler
Please wait working