zmienne globalne w komentarz
This commit is contained in:
parent
1f14c295df
commit
5189834415
|
@ -2,15 +2,17 @@
|
|||
//szymon
|
||||
//#include "myfunc.h"
|
||||
|
||||
int8_t x = 1, y = 2, z[10];
|
||||
int8_t *ip; /* ip to wskaźnik do obiektu typu int */
|
||||
//int8_t x = 1, y = 2, z[10];
|
||||
//int8_t *ip; /* ip to wskaźnik do obiektu typu int */
|
||||
|
||||
int main() {
|
||||
|
||||
/*
|
||||
ip = &x; /* ip wskazuje teraz x */
|
||||
y = *ip; /* y ma teraz wartość 1 */
|
||||
*ip = 0; /* x ma teraz wartość 0 */
|
||||
ip = &z[0]; /* ip wskazuje teraz z[0] */
|
||||
*/
|
||||
|
||||
int8_t mx = 1, my = 2, mz[10]= {1,2,3,4,5};
|
||||
int8_t *mip; /* ip to wskaźnik do obiektu typu int */
|
||||
|
|
Loading…
Reference in New Issue