Programming Style of C Language :- The style of a C Language describes how to use various elements of C language to increase clarity, readability and understandability of c programs. Various elements that are included to describe c-style are:- 1.Names. 2.Spaces. 3.Line Breaks. 4.Comments. 5.Indentation. 6.Blank lines. 7.Braces. 1.Names : Use Meaningful names for File names. Variable names. Function names. If two (or) three words are used in names, combine them with Underscores. File name should have an extension .c. Function name should be terminated with() Examples: Sum_of_two_numbers.c. file1.c, calendar.c /* File names */ Area_of_circle, x. y. z /* variable names */ Print_address().read_data(), calc_interest() ...