📄️ Syllabus
Advanced C Programming Syllabus
🗃️ Units
4 items
📄️ Practical-01
Write a program to check the given number is Palindrome or not using User Defined Function (UDF).
📄️ Practical-02
Write a program to find factorial of given no using UDF.
📄️ Practical-03
Write a program to find factorial of given no using recursion.
📄️ Practical-04
Write a program to display first 25 terms of Fibonacci series using recursion.
📄️ Practical-05
Write a program using a recursive function to find the GCD (Greatest Common Divisor) of two Positive integer numbers.
📄️ Practical-06
Write a program to swap value of two integer number using UDF.
📄️ Practical-07
Write a function prime that returns 1 if its argument is a prime and return zero Otherwise.
📄️ Practical-08
Write a program that uses a UDF to sort an array of integer.
📄️ Practical-09
Write a program which explains the use of nesting of functions.
📄️ Practical-10
Define a structure type struct personal that would contain person name, date of joining and salary using this structure to read this information and Display on screen.
📄️ Practical-11
Design a structure student_records to contain Roll_no, Name, City and Percentage obtained. Develop a program to read data for 5 students and Display them.
📄️ Practical-12
Write a program using structure within structure.
📄️ Practical-13
Write a program using structure within Function.
📄️ Practical-14
Write a program declare following structure member name, code, age, weight and height. Read all members of the structure for 10 persons and find list of persons with all related data whose weight > 50 and height > 40 and print the same with suitable format and title.
📄️ Practical-15
Write a program to use of pointer in arithmetic operation.
📄️ Practical-16
Write a program to accept 10 numbers and display its sum using pointer.
📄️ Practical-17
Write a program to accept 10 numbers and sort them with use of pointer.
📄️ Practical-18
Write a program to swap the two values using pointers and UDF.
📄️ Practical-19
Write a program with structure and pointer.
📄️ Practical-20
Write a program using pointer to determine the length of a character string.
📄️ Practical-21
Write a program using pointers to read an array of integers and print its elements in reverse order.
📄️ Practical-22
Write a program using UDF and pointers to add two matrices and to return the resultant matrix to the calling function.
📄️ Practical-23
Create one text file store some information into it and print the same information on Terminal.
📄️ Practical-24
A file named data contains series of integer no. Write a c program to read that no. and then write all odd no into file named odd no. and write all even no into file named even no. Display all the contents of these file on screen.
📄️ Practical-25
Write a c program to read data from keyboard write it to a file called input and Display data of input file on the screen.
📄️ Practical-26
Write a program that counts the number of characters and number of lines in a file.
📄️ Practical-27
27. Write a c program to read mark data which contains roll no, name, sub1, sub2, sub3 file and generate the annual examination results are tabulated as follows.
📄️ Practical-28
Write a c program to input employee no, employee name and basic and to store output into empdata file in following format.
📄️ Practical-29
Write a c program to read empin data file which contains empno, empname and basic. To create empout data file as per practical no 33 format.
📄️ Practical-30
Write a program using fseek and ftell functions.
📄️ Practical-31
Two files DATA1 and DATA2 contain sorted lists of integers. Write a program to produce a third file DATA which holds a single sorted, merged list of these two lists. Use command line arguments to specify the file names.
📄️ Practical-32
Write a C program to work as a dos type command using command line argument.
📄️ Practical-33
Write a C program to work as a dos copy command using command line argument.
📄️ Practical-34
Write programs which explain the use of memory allocation functions.
📄️ Practical-35
Write a program which explains the use of macro.