Software Quality Assurance in software engineering

On this blog you can post about most of the engineering related topics in very simple language. It computer science programs or management systems. Can read and understand in very easy language. Here you can know the code of different types of programs. You can learn about different computer languages. And you will also get information related to the operating system here. All you have to do is one click and your questions will be answered immediately. All about learning and knowledge provide...
C is a high level language, developed by Dennis Ritchie at
Bell laboratory in 1972.
C language is considered as the mother language of all the modern programming languages because most of the compilers, JVMs, Kernels, etc. are written in C language, and most of the programming languages follow C syntax, for example, C++, Java, C#, etc.
#include<stdio.h>
void main()
{
variable declaration part (int, char, float, etc)
clrscr(); (for clear screen)
statements;
getch(); (It can be used to hold program execution)
}
for output we write printf.
for input we write scanf.
#include<stdio.h>
void main()
{
clrscr();
printf("xyz");
getch();
}
then, your name will be printed.
also for compile use:- alt+f9, run use :- ctrl+f9.
Impressive
ReplyDelete