Please give me clear idea about these following declaration.const char *q="hello";*q='m';/*error*/q="bye";char const *s="hello";*s='m';/*error*/s="bye";char *const t="hello";*t='m';/*works*/t="bye";/*error*/
	
    
    	
	
	
	
		
	
		
    
    
        
            
                - 
                Interview Candidate                        
 
                -  Jul 14th, 2006
 
                -  4
 
                -  2351
 
            
         
     
     
	
    
          
              
            
              
                         
              
                    
              
              
     
    Showing Answers 1 - 4 of 4 Answers
			
				
				
       
       
		    
    
    
        
			
    
        
			
    
        
			
	
		
	
 
          
              
        
              
                      
              
                                   
  
                       
Please give me clear idea about these following declaration.const char *q="hello";*q='m';/*error*/q="bye";char const *s="hello";*s='m';/*error*/s="bye";char *const t="hello";*t='m';/*works*/t="bye";/*error*/