Code:
—————————
#include <stdio.h>
#include <stdlib.h>
int main()
{
float aa,bb,cc, balance; // we can define multiple variable at the same time
aa=bb=cc=100.00; // we can give a value to multiple variable at the same time
printf(“aa=%f , bb=%f ,cc=%f\n”, aa,bb,cc);
return 0;
}