adplus-dvertising
frame-decoration

Question

Which part of the program address space is p stored in the code given below?
#include <stdio.h>
    int *p = NULL;
    int main()
    {
        int i = 0;
        p = &i;
        return 0;
    }

a.

Code/text segment

b.

Data segment

c.

Bss segment

d.

Stack

Posted under Functions C Programming

Answer: (b).Data segment

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which part of the program address space is p stored in the code given below? #include <stdio.h> int *p = NULL; int main() { int i = 0; p =...

Similar Questions

Discover Related MCQs

Q. Property of external variable to be accessed by any source file is called by C90 standard as

Q. What is the scope of an external variable?

Q. What is the scope of a function?

Q. Array sizes are optional during array declaration by using ______ keyword.

Q. Which of following is not accepted in C?

Q. Which of the following cannot be static in C?

Q. Functions have static qualifier for its declaration by default.

Q. Is initialisation mandatory for local static variables?

Q. Assignment statements assigning value to local static variables are executed only once

Q. What is the format identifier for “static a = 20.5;”?

Q. Which of the following is true for static variable?

Q. register keyword mandates compiler to place it in machine register.

Q. Register storage class can be specified to global variables

Q. Which among the following is wrong for “register int a;” ?

Q. When compiler accepts the request to use the variable as a register?

Q. Which data type can be stored in register?

Q. Which of the following operation is not possible in a register variable?

Q. Which among the following is the correct syntax to declare a static variable register?

Q. Register variables reside in

Q. The scope of an automatic variable is: