Displaying hexadecimal, decimal, octal number format of the entered numbers.
Displaying entered number with leading zeros and trailing zeros.
Displaying entered number with right and left justification.
Displaying with different formatting specifies.
02
v To find greatest / smallest of three numbers.
To display pass class, second-class, distinction according to the marks entered from the keyboard.
To find even or odd numbers.
To display spellings of number 1-10 on entry.
Implementation and displaying the menu to execute 1. ADD, 2. SUBTRACT 3. MULTIPLICATION, 4. DIVISION using switch case.
To check whether there exist real roots of a quadratic equation and if exist find them.
03
To display our College name twenty times on screen.
To demonstrate Continue and Break statements within loop structure.
To add first 'n' natural, even, odd numbers using different loop structures.
To find GCD, LCM of two integral numbers.
To generate simple number triangle for n rows.
To generate Pascal triangle for n rows.
To add the series 1 + (1 + 2) + (1 + 2 + 3) + '+ (1 +2 +3 + '+n)
To generate all prime numbers within the given range.
To find all the Armstrong numbers within 100 to 1000.
Loop structure and nested loop structure.
04
To find the largest and smallest numbers from array elements. Arrays and
*To sort array elements in ascending / descending order.
To enter elements for 3X3 matrix and display them.
To calculate addition / subtraction of 2 dimensional matrix.
*To calculate multiplication of 2 dimensional matrix.
To find the number of vowels and consonants in a string.
Implementation of strlen(), strcpy(), strcat() and strcmp() functions.
To check whether a string is palindrome or not.
*To replace a specific character/string by another character/string in a multiword string.
*To make the abbreviated form of a multiword string.
05
To calculate the value of n Cr , n=r using function
To interchange the biggest and smallest number in to calculate factorial a one dimensional array using function
To calculate factorial of any given number using recursion.
To demonstrate call by reference, call by value.
To read and display an integer array using pointer.
To read and display a text using a character pointer to a string. Also count the number of characters, words and lines in the text.
*To read, display, add and subtract of two times defined using hour, minutes and values of seconds.
*To read and display the contents of a structure variable using pointer to a structure. User defined functions, structures and pointers.
06
Handling with unformatted, formatted files in different operational mode.
To count the number characters and number of lines in a file.
To copy one file into another by copying one character at a time / multiple characters simultaneously (using fgets() and fputs()).
To write records of student to a file using array of structure and display them accordingly.
*A text menu driven program to append a record, to edit a particular record, to display a predefined record, to delete a particular record from a previously created student file. Formatted and unformatted files.