What is openmp in c?
No Answer is Posted For this Question
Be the First to Post Answer
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
simple c program for 12345 convert 54321 with out using string
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
What are the 4 types of functions?
Difference between null pointer and dangling pointer?
What is register variable in c language?
Find MAXIMUM of three distinct integers using a single C statement
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
in iso what are the common technological language?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
What are dangling pointers?