Recent activity by shivam sharma 5

0 answers
1
int main(){int k = 10;printf("%d%d%d%d%d%d",k++,++k,k++,++k,k++,k);return 0 ;}STEPWISE SOLUTION IS REQUIRED
2 answers
2
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 zapGive the proper explanation
1 answer
3
give the complete solution with explanationint main(){ int arr = {10,2,3,4,5,6,7,8}; int *p, *q; p = &arr ; q = (int*) arr; printf("%d ,%d \n",*p...
0 answers
4
#include <stdio.h>void fun(int);typedef int (*pf) (int ,int );int proc(pf, int ,int);int main(){ int a = 3; fun(a); return 0; }void fun(int n){ if (n>0) ...