2) goto here; "> 2) goto here; ">
logo

CuriousTab

CuriousTab

Discussion


Home C Programming Control Instructions See What Others Are Saying!
  • Question
  • Point out the error, if any in the while loop.
    #include<stdio.h>
    int main()
    {
        void fun();
        int i = 1;
        while(i <= 5)
        {
            printf("%d\n", i);
            if(i>2)
                goto here;
        }
    return 0;
    }
    void fun()
    {
        here:
        printf("It works");
    }
    


  • Options
  • A. No Error: prints "It works"
  • B. Error: fun() cannot be accessed
  • C. Error: goto cannot takeover control to other function
  • D. No error

  • Correct Answer
  • Error: goto cannot takeover control to other function 

    Explanation
    A label is used as the target of a goto statement, and that label must be within the same function as the goto statement.

    Syntax: goto <identifier> ;
    Control is unconditionally transferred to the location of a local label specified by <identifier>.
    Example:

    
    #include <stdio.h>
    int main()
    {
        int i=1;
        while(i>0)
        {
            printf("%d", i++);
            if(i==5)
              goto mylabel;
        }
        mylabel:
        return 0;
    }
     

    Output: 1,2,3,4


    More questions

    • 1. What will be the output of the program?
      #include<stdio.h>
      
      int main()
      {
          char *str;
          str = "%d\n";
          str++;
          str++;
          printf(str-2, 300);
          return 0;
      }
      

    • Options
    • A. No output
    • B. 30
    • C. 3
    • D. 300
    • Discuss
    • 2. What will be the output of the program?
      #include<stdio.h>
      #define SQUARE(x) x*x
      
      int main()
      {
          float s=10, u=30, t=2, a;
          a = 2*(s-u*t)/SQUARE(t);
          printf("Result = %f", a);
          return 0;
      }
      

    • Options
    • A. Result = -100.000000
    • B. Result = -25.000000
    • C. Result = 0.000000
    • D. Result = 100.000000
    • Discuss
    • 3. What will be the output of the program?
      #include<stdio.h>
      int main()
      {
          int i=4, j=-1, k=0, w, x, y, z;
          w = i || j || k;
          x = i && j && k;
          y = i || j &&k;
          z = i && j || k;
          printf("%d, %d, %d, %d\n", w, x, y, z);
          return 0;
      }
      

    • Options
    • A. 1, 1, 1, 1
    • B. 1, 1, 0, 1
    • C. 1, 0, 0, 1
    • D. 1, 0, 1, 1
    • Discuss
    • 4. Which standard library function will you use to find the last occurance of a character in a string in C?

    • Options
    • A. strnchar()
    • B. strchar()
    • C. strrchar()
    • D. strrchr()
    • Discuss
    • 5. A macro must always be defined in capital letters.

    • Options
    • A. True
    • B. False
    • Discuss
    • 6. Point out the error in the program?
      typedef struct data mystruct;
      struct data
      {
          int x;
          mystruct *b;
      };
      

    • Options
    • A. Error: in structure declaration
    • B. Linker Error
    • C. No Error
    • D. None of above
    • Discuss
    • 7. Left shifting an unsigned int or char by 1 is always equivalent to multiplying it by 2.

    • Options
    • A. True
    • B. False
    • Discuss
    • 8. Can you combine the following two statements into one?
      char *p;
      p = (char*) malloc(100);
      

    • Options
    • A. char p = *malloc(100);
    • B. char *p = (char) malloc(100);
    • C. char *p = (char*)malloc(100);
    • D. char *p = (char *)(malloc*)(100);
    • Discuss
    • 9. How many bytes are occupied by near, far and huge pointers (DOS)?

    • Options
    • A. near=2 far=4 huge=4
    • B. near=4 far=8 huge=8
    • C. near=2 far=4 huge=8
    • D. near=4 far=4 huge=8
    • Discuss
    • 10. Can a structure can point to itself?

    • Options
    • A. Yes
    • B. No
    • Discuss


    Comments

    There are no comments.

Enter a new Comment