This document outlines a makeup test for a 'C' Programming course. It provides 12 questions covering various 'C' programming concepts and tasks. The questions cover topics such as the differences between break and continue, writing functions to check for palindromes and calculate Fibonacci series, using structures to store student records, and the differences between pass by value and pass by reference. Students must attempt any 12 questions out of the 15 total questions provided.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
182 views1 page
C' Programming RCS-201 (Makeup Test)
This document outlines a makeup test for a 'C' Programming course. It provides 12 questions covering various 'C' programming concepts and tasks. The questions cover topics such as the differences between break and continue, writing functions to check for palindromes and calculate Fibonacci series, using structures to store student records, and the differences between pass by value and pass by reference. Students must attempt any 12 questions out of the 15 total questions provided.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
C Programming RCS-201
(Makeup test)
Note: Attempt any 12 questions. Each question carries equal marks. 10x5=60
a) Differentiate between break and continue with suitable example.
b) Write a c program that convert binary number into its equivalent decimal number. c) Write a c program whit your own function to find out whether the string is palindrome or not. d) Write a c program which finds out sum of digit of a 5 digit number using recursion. e) Explain the concept of pass by value and pass by reference with suitable example. f) Write a c program which sorts the elements of the array. g) What is the different type of functions in c and what are the advantage of using the functional approach in our program. h) Write a c program to find whether the square matrix is symmetric or not. i) Write a C program to multiply the two matrixes A and B of dimensions 3x3. Store the resultant matrix in C. j) Define structure for keeping the record of students having information 1) Id 2) Name 3) Address 4) Percentage Write a c program that stores such record of 50 students in the database. k) Write a C program which prints all the prime numbers between 1 to 300. l) Write a C program which print whether the given year is leap year or not. m) Write a C program that print n terms of Fibonacci series. n) Write a C program that print all the arm strong number between 1 to 1000. o) Write short note on: 1) Difference between Structure and Union 2) Enum and typedef keywords