C Programming Assignment
C Programming Assignment
1.Which keyword is used to make the array size optional in C language during array declaration?
a) auto
b) static
c) extern
d) register
Answer:- c) extern
In C, the extern keyword is used to declare an array without specifying its size. This is typically used when
the array's size is defined elsewhere, allowing the array to be referenced across different files or functions.
2. What are the elements present in the array of the following C code?
int array[5] = {5};
a) 5, 5, 5, 5, 5
b) 5, 0, 0, 0, 0
c) 5, (garbage), (garbage), (garbage), (garbage)
d) (garbage), (garbage), (garbage), (garbage), 5
Answer:- b) 5, 0, 0, 0, 0
In the given code:
int array[5] = {5};
When an array is partially initialized in C (only the first element is initialized), the remaining elements are
automatically initialized to 0. So, the first element will be 5, and the rest will be 0.
3. An array in C cannot be initialized by which of the following statement?
a) char a[] = “Hello”;
b) char a[6] = {};
c) char a[6] = {0};
d)
char a[6];
a = "Hello";
Answer:- d) char a[6];
a = "Hello";
arrays cannot be assigned values using the assignment operator (=) after their declaration. Once an array is
declared, you cannot assign a string or any other values to it directly like this:
char a[6];
a = "Hello";
Arrays in C can only be initialized at the time of declaration or modified element by element. The other
options are valid ways of initializing arrays.
4. Which of the following c statement will calculate the correct size of an array of 10 integers?
(Assuming the declaration as int a[10];)
a) sizeof(a[10]);
b) sizeof(*a);
c) sizeof(a);
d) sizeof(&a);
Answer:-c) sizeof(a);
This statement returns the total size of the array in bytes. For an array of 10 integers (int a[10];), it will
calculate the size of the entire array, typically 40 bytes (assuming each int is 4 bytes).
5. The value obtained in the function is given back to main by using ________ keyword.
a) return
b) static
c) new
d) volatile
Answer:- a) return
the return keyword is used to send a value from a function back to the calling function (such as main). It
terminates the function and provides the result to the caller.
Explanation:
The variable x is declared as static, meaning it retains its value between function calls.
Initially, x is set to 3, and x++ increments it to 4.
The if condition checks if x is less than or equal to 5, which is true, so it prints "hi" and then calls main()
again.
This process continues, incrementing x each time, until x reaches 6, at which point the condition x <= 5
becomes false, and the recursion stops.
B.1. Implement a C program to find the reverse of a string and check whether it is palindrome or not.
Answer:-
#include <stdio.h>
#include <string.h>
void reverseStr(char str[]) {
int n = strlen(str);
for (int i = 0; i < n / 2; i++) {
char temp = str[i];
str[i] = str[n - i - 1];
str[n - i - 1] = temp;
}
}
int isPalindrome(char str[]) {
int n = strlen(str);
for (int i = 0; i < n / 2; i++) {
if (str[i] != str[n - i - 1])
return 0;
}
return 1;
}
int main() {
char str[100];
reverseStr(str);
printf("Reversed string: %s\n", str);
if (isPalindrome(str))
printf("The string is a palindrome.\n");
else
printf("The string is not a palindrome.\n");
return 0;
}
Output:-
3. Write a C program to sort the elements by passing array as function argument.
Answer:-
#include <stdio.h>
void bubbleSort(int arr[], int n) {
int i, j, temp;
for (i = 0; i < n-1; i++) {
for (j = 0; j < n-i-1; j++) {
if (arr[j] > arr[j+1]) {
// Swap arr[j] and arr[j+1]
temp = arr[j];
arr[j] = arr[j+1];
arr[j+1] = temp;
}
}
}
}
void printArray(int arr[], int n) {
for (int i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
printf("\n");
}
int main() {
int arr[] = {64, 34, 25, 12, 22, 11, 90};
int n = sizeof(arr)/sizeof(arr[0]);
printf("Original array: \n");
printArray(arr, n);
bubbleSort(arr, n);
return 0;
}
Output:-
4. Write a program to find GCD and LCM of two numbers using concept of functions.
Answer:-
#include <stdio.h>
int find_gcd(int a, int b) {
while (b != 0) {
int temp = b;
b = a % b;
a = temp;
}
return a;
}
int find_lcm(int a, int b) {
return (a * b) / find_gcd(a, b);
}
int main() {
int num1, num2, gcd, lcm;
printf("Enter the first number: ");
scanf("%d", &num1);
printf("Enter the second number: ");
scanf("%d", &num2);
gcd = find_gcd(num1, num2);
lcm = find_lcm(num1, num2);
printf("The GCD of %d and %d is: %d\n", num1, num2, gcd);
printf("The LCM of %d and %d is: %d\n", num1, num2, lcm);
return 0;
}
Output:-