pointers in c

pointers in c

University

10 Qs

quiz-placeholder

Similar activities

Java Operators

Java Operators

University

14 Qs

Recursion

Recursion

University

8 Qs

Coding club Summit Online Quiz

Coding club Summit Online Quiz

University

15 Qs

Operators in C(29/08)

Operators in C(29/08)

University

10 Qs

C Basics

C Basics

University

12 Qs

Java Programming

Java Programming

University

15 Qs

TECH INTELLECT - ROUND 2

TECH INTELLECT - ROUND 2

University

10 Qs

C Programming Quiz-1

C Programming Quiz-1

University

10 Qs

pointers in c

pointers in c

Assessment

Quiz

Computers

University

Medium

Created by

Karen Tan

Used 10+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

//&a=fff110; &b=abc123;

what is the value of c?

fff110

abc123

10

5

none of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

//&a=fff110; &b=abc123;

what is the value of d?

fff110

abc123

10

5

none of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

//&a=fff110; &b=abc123;

what is the value of *d?

fff110

abc123

10

5

none of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

//&a=fff110; &b=abc123;

what is the value of *c?

fff110

abc123

10

5

none of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

int *e;

int *f;

e=c;

f=d;

//&a=fff110; &b=abc123;

what is the value of e?

fff110

abc123

10

5

none of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

int *e;

int *f;

e=c;

f=d;

//&a=fff110; &b=abc123;

what is the value of f?

fff110

abc123

10

5

none of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a = 10, b=5;

int *c;

c = &a;

int *d;

d = &b;

int *e;

int *f;

e=c;

f=d;

//&a=fff110; &b=abc123;

what is the value of *f?

fff110

abc123

10

5

none of the above

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?