Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
3 C 23886Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
3 C 9666
1)
int i=5;
j=i++ + i++ + i++;
printf("%d",j);This code gives the answer 15.But if we
replace the value of the j then anser is different?why?
2)int i=5;
printf("%d",i++ + i++ + i++);
this givs 18.
Answer
Is This Answer Correct ? | 14 Yes | 11 No |