- 
                    Data Structures declared as Volatile and ConstWhat does it mean when a data structure is declared volatile? What does it mean when a data structure is declared Const? 
- 
                    Data Structure - character that repeats itselfGiven a string of characters (let us say there are about 100 characters or more in the string), what is the most efficient method to use for finding out the character that repeats itself the most?Is it possible for us to use some kind of data structure for this?, if this is so,which is the best one that needs to be used? 
- 
                    
- 
                    printf("Address of j=%un",&j);
 printf("Address of k=%un",&k);
 return 0;
 }
 Suppose the answer is:
 Address of i=2004
 Address of j=2002
 Address of k=2000
 why is the address decreasing ?">Consider the following program:#includemain(){int i=3;int *j;int **k;j=&i;k=&j;printf("Address of i=%un",&i);printf("Address of j=%un",&j);printf("Address of k=%un",&k);return 0;}Suppose the answer is:Address of i=2004Address of j=2002Address of k=2000why is the address decreasing ?
- 
                    
- 
                    

 
  
  
 