Consider the following program segment: main() { int a=2; printf (“a= %d”,a); modify(a); printf (“a= %d”,a); } modify(a) { a*=3; printf (“a= %d”,a); return; } The answer printed after executing this program will be
Reveal answer
Fill a bubble to check yourself