c c programming language code example
Example 1: c programming language
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello, world!\n");
char* myString = "An awesome string!";
printf("%s\n", myString);
int myInt = 10;
printf("%d\n", myInt);
double myDouble = 5.2;
printf("%f\n", myDouble);
return 0;
}
Example 2: c programming language
Do not want to be rude but I learnt this language and found out it has no class.
Prefer languages with class like C++, C#, Java, Python, etc.
Be classy.