Archive for data structure “tree” with C
You are browsing the archives of data structure “tree” with C.
You are browsing the archives of data structure “tree” with C.
1. What type of memory could be accessed in least time? (a)cache memory (b)secondary memory (c)main memory (d)none Ans:A 2. void main() { int const * p=5; printf("%d",++(*p)); } What is the output? (a) 6 (b) 5 (c) Compiler error (d) Run time error Ans :c 3. main() { [...]