Call by value and Call by reference
Call by Value and Call by Reference Now we know to call Functions. But till now when we call the Function either by passing valu...
C Programs | C Questions | C Basics | C Pyramids | C Tricks | C Programmers
Call by Value and Call by Reference Now we know to call Functions. But till now when we call the Function either by passing valu...
POINTER Consider the declaration, Int i=3; This declaration tell the C compiler to: · Reserve space in memory to hol...
Digits counting of a give number in C: - Logic for digit counting : let number be 743 then 743 / 10 yields reminder as 3 which is co...
Swapping without using third variable in C? swapping means altering the values Swapping : - Swap x=3 and y=4 after swapping x=4 and ...
Even and Odd checking in C? Even numbe r:- Number divisible by 2 is known as even number. Odd number :-Number not divisible by 2 is ...
Palindrome Checking in C Palindrome : A palindrome number is a number such that if we reverse it, it will not change. For example ...
printing natural number means printing of 1 2 3 4 5........................................... Program # include < stdio.h ...
Right-angle Triangle : - A triangle whose hypotenuse is equal to the square root of sum of square of base and height of the same triangl...