//C Program to Print
//Integer value
#include <stdio.h>

//Driver Code
int main() 
{
    //Declaring integer
    int x=5;

    //Printing values
    printf("Print integer value %d",x);
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: