244 subscribers
6 photos
3 files
4 links
This group will help beginners to learn programming in C language.

Discussion: @c_coding_discussion
Download Telegram
Channel created
Here you will get codes of DSUS (DSA) and all basic to advanced code of C language
#notice:
Do not copy paste these codes try to understand the concept of the code.
#If you have any query or doubt in c programming you can ask me directly.

Thanks to all for joining the group...
Happy coding :)
1. First C program :-

#include <stdio.h>

int main() {
printf ("Hello World!");
return 0;
}

2. C program to add two integers:-
#include <stdio.h>

int main() {
int a = 5, b = 4;
printf ("sum = %d",(a+b));
return 0;
}
👍1