動態變量能夠跨函數使用內存

由上節的知識咱們直到靜態變量是不能夠跨函數使用內存的: 那麼由malloc函數動分配分配內存的變量能夠跨函數使用內存嗎? 先來看一段小程序:web #include <stdio.h> #include <malloc.h> void f(int ** q) { *q = (int *)malloc(sizeof(int)); **q = 5; } int main() {
相關文章
相關標籤/搜索