Consider the following C program:
int main() {
int x = 50, y, z;
y = &x;
printf("Address is: %d", y);
}
Count the number of tokens in the above program.
1
25
2
26
3
27
4
28
5
Question Not Attempted
Consider the following C program:
int main() {
int x = 50, y, z;
y = &x;
printf("Address is: %d", y);
}
Count the number of tokens in the above program.