John Mavrick's Garden

Search IconIcon to open search

Last updated April 10, 2022

2Status: Tags: #archivedCards/cmpt125/pointers Links: CMPT 125 Studying


CMPT 125 Previous Quizzes

Fall 2020

Q1

1- Value of x and y, where are ptr and ptr2 pointing?

1
2
3
4
5
6
7
8
9
int main(){
	int x = 1;
	int y = 2;
	int* ptr1 = &x;
	int* ptr2 = &y;  *ptr2 = 3;
	ptr2 = ptr1;
	*ptr2 = 4;
	return0;
}

? x = 4, y = 3, both point to x

2- Result of Image from Gyazo ? “20, 30”

Q2


Backlinks


References:

Created:: 2021-10-24 13:58


Interactive Graph