Signature Program Question:
Download Questions PDF

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

Answer:

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);
}

Download Signature Program Interview Questions And Answers PDF

Previous QuestionNext Question
Explain How to create a signature over some content at a URL such that can change the URL without breaking the signature?How to combine XML document with a signature such that, in the resulting document, the signature signs the original document?