A PHP Error was encountered

Severity: Warning

Message: A non-numeric value encountered

Filename: controllers/home.php

Line Number: 222

A PHP Error was encountered

Severity: Warning

Message: A non-numeric value encountered

Filename: controllers/home.php

Line Number: 228

Structures, Unions, Enums - C Programming Questions and Answers
Home / C Programming / Structures, Unions, Enums :: Point Out Errors

C Programming :: Structures, Unions, Enums

  1. Point out the error in the program?

     struct emp
     {    
        int ecode;   
        struct emp *e;
     }; 
    

  2. A.

    Error: in structure declaration

    B.

    Linker Error

    C.

    No Error

    D.

    None of above

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. Point out the error in the program?

     typedef struct data mystruct;
     struct data
     {  
          int x;  
          mystruct *b;
     }; 
    

  4. A.

    Error: in structure declaration

    B.

    Linker Error

    C.

    No Error

    D.

    None of above

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Point out the error in the program?

    #include 
    
     int main()
     {
         struct a   
         {      
            float category:5;           
            char scheme:4;  
        };  
         printf("size=%d", sizeof(struct a));   
         return 0;
       } 
    

  6. A.

    Error: invalid structure member in printf

    B.

    Error in this float category:5; statement

    C.

    No error

    D.

    None of above

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Point out the error in the program?

     struct emp
     {   
         int ecode;   
         struct emp e;
     }; 
    

  8. A.

    Error: in structure declaration

    B.

    Linker Error

    C.

    No Error

    D.

    None of above

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. Point out the error in the program?

     #include
     
     int main() 
     {    
       struct emp  
       {       
          char name[20];  
          float sal;   
      };    
      struct emp e[10];   
      int i;  
      for(i=0; i9; i++)             
         scanf("%s %f", e[i].name, &e[i].sal); 
      return 0;
     } 
    

  10. A.

    Error: invalid structure member

    B.

    Error: Floating point formats not linked

    C.

    No error

    D.

    None of above

    View Answer

    Workspace

    Discuss Discuss in Forum


  11. Point out the error in the program?

     #include
     #include
     void modify(struct emp*);
     struct emp 
     {   
        char name[20];  
        int age;
     }; 
     int main()
     {   
         struct emp e = {"Sanjay", 35};      
         modify(&e); 
         printf("%s %d", e.name, e.age);        
         return 0;
     } 
     void modify(struct emp *p) 
     { 
         p ->age=p->age+2; 
     } 
    

  12. A.

    Error: in structure

    B.

    Error: in prototype declaration unknown struct emp

    C.

    No error

    D.

    None of above

    View Answer

    Workspace

    Discuss Discuss in Forum


  13. Point out the error in the program in 16-bit platform?

      #include
    
       int main() 
       {   
           struct bits    
           {         
             int i:40;    
          }bit;  
         printf("%d\n", sizeof(bit));     
         return 0;
      }
    

  14. A.

    4

    B.

    2

    C.

    Error: Bit field too large

    D.

    Error: Invalid member access in structure

    View Answer

    Workspace

    Discuss Discuss in Forum


  15. Point out the error in the program?

    #include 
     int main() 
     {   
         union a   
         {        
             int i;    
             char ch[2];     
      };
      union a z1 = {512}; 
      union a z2 = {0, 2}; 
      return 0;
     } 

     

  16. A.

    Error: invalid union declaration

    B.

    Error: in Initializing z2

    C.

    No error

    D.

    None of above

    View Answer

    Workspace

    Discuss Discuss in Forum


  17. Point out the error in the program?

    #include 
     int main()
     {
         struct emp   
         {      
            char n[20];    
            int age;   
       };    
       struct emp e1 = {"Dravid", 23};          
       struct emp e2 = e1; 
       if(e1 == e2)   
           printf("The structure are equal");   
       return 0;
     } 
    

  18. A.

    Prints: The structure are equal

    B.

    Error: Structure cannot be compared using '=='

    C.

    No output

    D.

    None of above

    View Answer

    Workspace

    Discuss Discuss in Forum


  19. Point out the error in the program?

     #include
     
      int main() 
      {   
         struct bits    
         {        
             float f:2;    
           }bit;    
        printf("%d\n", sizeof(bit));       
        return 0;
     } 
    

  20. A.

    4

    B.

    2

    C.

    Error: cannot set bit field for float

    D.

    Error: Invalid member access in structure

    View Answer

    Workspace

    Discuss Discuss in Forum