ad

Friday, February 14, 2025

What is the C language

 
               What is the C language

1]    full form  c stands for computer programming  language .

  2] C language  developed and father by Dennis Ritchie at the  Bell Laboratories in 1972 .

  3] C is widely use programming language they are important for the c is low level programming       efficiency simplicity and flexibly, portability influence, system and application software embedded  system, large ecosystem, interfacing with hardware is programming language .

 4] C Is a general-purpose programming language.

 5] C is middle level programming language.

  6] Used c language developing computer software, system programming, application, games such as windows and complicated programs such oracle database, python, git, interpreter

 7] C is an imperative procedural language supporting structured programming.

 8] C language is a procedural and general-purpose programming language.

 9] C is portable assembly language. designed to ease to implementation of compiler the produce high quality code

 10] C uses t0 blocks to separate pieces of code that performing different tasks that helps easier clean code and easier to understand and easy to find  mistake of program

 11] C allows low level memory access provide simple  and clean structure.

C Program Structure 

#include<stdio.h>

#include<conio.h>

int main()

{

printf(" Hi Friend");

return 0;

}

Explain Program

Step :1

#include <stdio.h>

  • compiler to include the contents of the Standard Input Output header file (stdio.h) before actual compilation starts.
Step :2

#include <conio.h>


  •  Console Input Output header file.
Step :3

int main() { ... }


  •  main() function — this is where execution 
  •  Indicates that the function returns an integer to the operating system.
  •  returning 0 means the program executed successfully.

Step :4

printf(" Hi Friend");

  • Displays to the text Hi Friend on the output screen
  • message with a space 
Step :5

return 0;


  •  Signals that the program completed successfully.

C Program Structure 

Output :- 

Hi Friend


Related Post :-

php echo function

Creating Sample Customer order Form Using HTML

css column gap property




No comments:

Post a Comment