POINTERS Activity
POINTERS Activity
BSCpE 2B
#include<iostream>
int main(void)
int num = 5;
if (address == &num) {
return 0;
}
TAGACA CHARLIE Z.
BSCpE 2B
#include<iostream>
int main(void) {
int num = 5;
int* a = #
int* b=a;
return 0;
}
TAGACA CHARLIE Z.
BSCpE 2B
#include<iostream>
int main(void) {
int num = 5;
int* a = #
*a = 999;
return 0;
}
TAGACA CHARLIE Z.
BSCpE 2B
#include <iostream>
#include <iomanip>
#include <cmath>
float floatValue;
cin>> floatValue;
return 0;
}
TAGACA CHARLIE Z.
BSCpE 2B
#include <iostream>
cin>> *pntr1;
cin>> *pntr2;
return 0;
}
TAGACA CHARLIE Z.
BSCpE 2B
#include<iostream>
int main(void)
char a = 'J';
char ptr1 = a;
return 0;
TAGACA CHARLIE Z.
BSCpE 2B