DEV Community

gauravftp
gauravftp

Posted on

1

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

AWS GenAI LIVE image

Real challenges. Real solutions. Real talk.

From technical discussions to philosophical debates, AWS and AWS Partners examine the impact and evolution of gen AI.

Learn more

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay