C Programming Sample Programs
C Programming Sample Programs
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
#include <stdio.h>
int main() {
int number;
// displays output
printf("You entered: %d", number);
return 0;
}
#include <stdio.h>
int main() {
#include <stdio.h>
int main() {
int num;
printf("Enter an integer: ");
scanf("%d", &num);
return 0;
}
#include <stdio.h>
int main() {
char c;
int lowercase_vowel, uppercase_vowel;
printf("Enter an alphabet: ");
scanf("%c", &c);