Matrix Addition in C

  • Post author:
  • Reading time:2 mins read
  • Post category:C Programs

In this example, you will be able to add two matrices. To add two matrices using c programming you must have some knowledge on: C-DatatypesC-ArrayC-OperatorsC-Input OutputLoops in C Program to…

Continue Reading Matrix Addition in C

C Program to Find Simple Interest

  • Post author:
  • Reading time:1 mins read
  • Post category:C Programs

How to Calculate Simple Interest? Simple interest can be calculated using the formula: Simple Interest SI=(p*t*r)/100. Here p is the principle amount. For this amount we are calculating the interest.…

Continue Reading C Program to Find Simple Interest
tolower in c
tolower in c

tolower in c

What is tolower in c programming? tolower in c is a c library function which converts given uppercase letters to lowercase letters. This function is defined in ctype.h header file.…

Continue Reading tolower in c
islower in c
islower in c programming

islower in c

If you want convert islower in c then read this blog post. What is islower in c programming? islower function checks whether a given character is in lowercase or not. This function…

Continue Reading islower in c
isupper in c
isupper in c programming

isupper in c

If you want convert isupper in c then read this blog post. What is isupper in c programming? isupper function checks whether a given character is in uppercase or not. This function…

Continue Reading isupper in c
atan in c
atan in c programming

atan in c

What is atan in c programming? atan in c is a mathematical function which is used to find arc tangent value of a given number in radians. This function is…

Continue Reading atan in c
fabs in c
fabs in c programming

fabs in c

What is fabs in c programming? fabs function is used to find absolute value of a given number where given number is floating point value. This function is defined in…

Continue Reading fabs in c

strcpy in c

What is strcpy in c programming? strcpy function is used to copy the string from source to destination. Whenever strcpy encounters null character it stops copying. strcpy function is defined…

Continue Reading strcpy in c