DEV Community

Cover image for C/C++  Process Map

C/C++ Process Map

Ketan Patil on September 11, 2020

Most of us start learning of programming language with C/C++. C consider as grandfather of modern programming languages and some of them are runnin...
Collapse
 
ac000 profile image
Andrew Clayton

here we didn’t assign value of g_a as 0 then how g_a is come in BSS?

Global variables that aren't given an initial value are initialised to 0/NULL.

Collapse
 
ketan_patil profile image
Ketan Patil

True