Signature Program Question:
Download Questions PDF

Explain What will be the output of the expression 11^5?

Answer:

by using functions
eg:

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
How to combine XML document with a signature such that, in the resulting document, the signature signs the original document?If there are multiple elements in the same document. How do sign the elements plus the order in which the elements appeared in the document?