Why is event driven programming or procedural
programming, better within specific scenario?
Explain union.
find the sum of two matrices and WAP for it.
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
how we do lcm of two no using c simple if while or for statement
How can I access a memory located at certain address?
Why c is called top down?
What does the c in ctime mean?
Explain what are the advantages and disadvantages of a heap?
write a method for an array in which it can display the largest n next largest value.
Describe the modifier in c?
why do we use # in c-language?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question