Logic

This is the first project which you will learn to print something on the screen in C program.

Print Reverse an Array

#include <stdio.h>

int main() {

printf (" Hello, World!");

return 0;

}

Output

Hello, World!