int a = 10, b=5;
int *c;
c = &a;
int *d;
d = &b;
//&a=fff110; &b=abc123;
what is the value of c?
pointers in c
Quiz
•
Computers
•
University
•
Medium
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
10 questions
Expression in C Programming
Quiz
•
University
10 questions
C Programming Quiz-1
Quiz
•
University
15 questions
BASIC C PROGRAMMING QUIZ
Quiz
•
University
15 questions
Coding club Summit Online Quiz
Quiz
•
University
15 questions
Java Programming
Quiz
•
University
10 questions
C - Pointers
Quiz
•
University
12 questions
Operators in C
Quiz
•
University
15 questions
C programming
Quiz
•
University
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade