Knowledge in c language

Program to print maximum element of a matrix.

It is to find the highest number in a matrix.

Program to find the transpose of a matrix.

Transpose of a matrix means exchanging of rows to columns and columns to rows.

Program to find length of the string

It is to print how many digits or letters of strings are printed.

Program to compare two strings without using library function.

This program is to compare two strings and to print whether they are same or not.

Procedure programming language

Knowledge about c programing

Discovery of c language

C is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, while a static type system prevents unintended operations. By design, C provides constructs that map efficiently to typical machine instructions and has found lasting use in applications previously coded in assembly language. Such applications include operating systems and various application software for computers, from supercomputers to embedded systems.CThe C Programming Language[1] (often referred to as K&R), the seminal book on CParadigmImperative (procedural), structuredDesigned byDennis RitchieDeveloperDennis Ritchie & Bell Labs (creators); ANSI X3J11 (ANSI C); ISO/IEC JTC1/SC22/WG14 (ISO C)First appeared1972; 47 years agoStable releaseC18 / June 2018; 1 year agoTyping disciplineStatic, weak, manifest, nominalOSCross-platformFilename extensions.c, .h

Program to read a string and print it

It helps in writing a program using string, gets and puts

Program to explain string handling functions

String handling functions are str lwr(), str upr(), str rev(), str cpy(), ...