Computer Science, asked by poulami26, 9 months ago

develop a c program to declare an integer variable, initialise it with an integer value, print the variable name along with its value..

please click a photo of the answer so that I can understood the answer properly.... please.​

Answers

Answered by sahil10august
1

#include<stdio.h>

int main()

{

int n=5;

printf("Value =%d",n);

return 0;

}

Attachments:
Similar questions