convert c to C language

include

int main() { int c, d;

printf("Enter a value for c: "); scanf("%d", &c);

d = c * 2;

printf("The value of d is: %d\n", d);

return 0; }