Call by value and Call by reference 10:42 AM 0 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 10:39 AM 0 POINTER Consider the declaration, Int i=3; This declaration tell the C compiler to: · Reserve space in memory to hol...
C program for largest of n numbers 7:10 PM 0 C program for largest of n numbers: - We first input the numbers of number we want to input for checking largest number among them afte...
Digits Counting of a Number 12:27 PM 0 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 Numbers 12:19 PM 0 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 11:56 AM 0 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 10:42 AM 0 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 1 to 100 in C 10:29 AM 0 printing natural number means printing of 1 2 3 4 5........................................... Program # include < stdio.h ...
Right-angled triangle printing in C 10:28 AM 0 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...
FUNCTIONS 1:11 PM 0 Functions Functions in c? A function is a block of code that has a name and it has a property that it is reusable i.e. it can ...
Switch case in C 2:59 PM 0 SWITCH CASE Control statement that allow us to make a decision from the number of choices is called a switch , or more corre...