Program C untuk operator penugasan

#include<stdio.h>
int main(){
int a;
a = 55;
printf(“value of a = %d”,a);
return (0);
}
Energetic Echidna