Suppose we have a variable kequal to 7:
k
int k=7; int t=&k;
But that does not work. What mistake?
&ktakes the address k. You probably mean
&k
int *t = &k;
I have a good reading for you: The Alpha P. Steinbach Guidebook .
You probably meant:
int k=7; int *t=&k;
t int int*. int* int, , . : declar t int*. , , , , - .
int
int*
Source: https://habr.com/ru/post/1753303/More articles:Creating a PHP script to run as a cron job - using the Zend Framework library - phpmemcpy problem - cThe image is drawn stretched to the HTML canvas when it is created using jQuery - jqueryКак решить, когда выполнять DLL? - dllThe problem with the height of the DIV when swimming - htmlhow to find out the name of the regional time zone of the java script system - javachange connecting strings with msbuild - c #Swing JButton does not change onclick background color - javaS3 Timing Buckets - amazonMaven2 + JMeter + JUnit with dependencies - junitAll Articles