Intelligence of a person
TASK: According to a study, the approximate level of intelligence of a person can be calculated using the following formula: i=…
TASK: According to a study, the approximate level of intelligence of a person can be calculated using the following formula: i=…
Escape sequence in C: The escape sequence in the C language is the sequence of the letters that do not stand out when used with…
TASK- Write a C program to print all Unique numbers in an array (the size of array (number of elements in array) should be tak…
TASK- Write a C program to Subtract Two Matrix. STEPS TO BE TAKEN: 1) Matrix is a type of array. 2) Array can have multiple d…
TASK- Write a C Program to ADD two Matrices. STEPS TO BE TAKEN: 1) Matrix is a type of array. 2) Array can have multiple dimen…
TASK- Write a C program for Taylor series of sin(x). FOR TAYLOR SERIES OF COS(X) --> COS(X) TAYLOR SERIES STEPS TO BE TAKEN…
TASK- Write a C program to find the Transpose of a matrix. Let A = which has order 3x3 we need to find transpose of a whic…
TASK- Write a program in C in which add and subtract pointer of the same type. To understand pointers click: 👉👉 Pointers COD…
TASK- Write a program in C to find the sum of the Taylor series of cos(x) Taylor series of Cos(x): 1 - x²/2! + x⁴/4!...…. CODE:…
TASK- Write a c program to find the younger age between two ages. First enter the ages and then find the younger age print by t…
TASK- Write a C program for Palindrome number. What is a Palindrome number: Number which when reversed is equal to the origina…
TASK 3- A five-digit number is entered through the keyboard. Write a C-program to obtain the reversed number and to determin…
TASK- Write a C-Program in which declare two int arrays, each of maximum size 100. Ask the user to enter the size of the 1st a…
TASK: Write a C-Program in which declare two int arrays, each of maximum size 100. Ask the user to enter the size of the 1st a…
TASK- Write a C program To determine whether a matrix is identity or Not!! IDENTITY MATRIX: A matrix having 1 on diagonal entri…
TASK- Write a C program to Multiply two matrices. LOGIC BUILDING: In the View of simply math, Two matrices multiplying, must be…
TASK- Write a C-program to add entered terms of the following series: 1/(1!) + 2/(2!) + 3/(3!) + 4/(4!) + … CRACKING: Each num…
TASK- Write a C program for HCF of Two Numbers. HCF= The highest common factors of each member of group CODE: #include<s…
TASK- Write a C program for LCM of Two Numbers. LCM: Least common multiple , its a number which is closer to certain with havin…
TASK- write a C-program to calculate the sum of digits of a number with recursion. CODE: #include<stdio.h> int digit_sum…