0
What is the difference between static variable and global variables
variables
2 Respostas
0
Global variables are declared outside of all functions. Global variables are stored in Data Segment of process. ... If static variables are declared outside of all functions it will have globalscope or it is declared within afunction it will have scope within afunction and it will retain until the life of program.
0
write code for sum of two no. without using arithmetic operation?