Computer Science, asked by Iamthebests, 2 days ago

write a program to assign value 10 to a variable and value 500 to a constant and print both the values

Answers

Answered by agentdevprobs
1
include
include
void main ()
{

clrscr();
int a=10;
int b=500;
printf(“%d%d”,a,b);
getch();
}
Attachments:
Similar questions