Which of the following is an external variable in the following C code?
#include int func (int a){ int b; return b;}int main(){ int c; func (c);}int d;
#include int func (int a){ int b; return b;}int main(){ int c; func (c);}int d; Which of the following is an external variable in the following C code?
#include <stdio.h>int func (int a){ int b; return b;}int main(){ int c; func (c);}int d; Correct Answer d
মোঃ আরিফুল ইসলাম
Feb 20, 2025