4 : Write a C program to get the C version you are using.

/*Write a C program to get the C version you are using.
Expected Output:

We are using C18!*/

#include<stdio.h>
main(void)
{
printf("We are using C18!");


Comments