Answers

Question and Answer:

  Home  Signature Program

⟩ Explain How a C program will execute(run) automatically even though you have not runned it?

by using functions such as:

main()

{

sum();

}

sum()

{

int i,j;

printf("enter i,j values:");

scanf("%d%d",&i,&j);

printf("%d",i+j);

}

 204 views

More Questions for you: