C Program : GATE 2019 Consider the following C function. void convert(int n){ if(n<0) printf(“%d”,n); else { convert(n/2); printf(“%d”,n%2); } } Which one of the following will happen when the function convert is called with any positive integer n as argument? Download as PDF Related posts: C Program GATE 2018 -8 C Program GATE 2019-6 C Program GATE 2018 -7 C Program GATE 2018 -5 C Program GATE 2019 -4 C Program GATE 2019-3 C Program GATE 2019-1