address of register variable in C and C++

前端 未结 8 1898
野趣味
野趣味 2021-01-06 03:00

I know the concept of register variable and it\'s use cases but there are few questions in my mind based on what I have tried.

  1. I cannot access the address

8条回答
  •  忘掉有多难
    2021-01-06 03:33

    In C, we cannot take the address of a variable with register storage. we need to store with normal variables name.

提交回复
热议问题