DEV Community

gauravftp
gauravftp

Posted on

C program for beginner

#c

C, computer programming language developed in the early 1970s by American computer scientist Dennis M. Ritchie

It is widely used for developing desktop applications and software application, It can be used to develop software like operating systems, databases, compilers, and so on
When you begin to learn c program, you will observed most of the collage start programming with hello world
hello world

#include<stdio.h>
void main() {
// printf() displays hello worl on your screen
printf("Hello World!");
}

c program for beginner are:

addition of two number
swapping of two number

check even odd

check positive, negative and zero in c
Convert Uppercase to Lowercase in C

Prime number program in C

CPU scheduling program in C like first come first serve

FCFS(First Come First Serve) scheduling program in c

Top comments (0)