Answer Posted / salu
For the development of ur company and for my career
development
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is the modulus operator?
What is hashing in c?
Describe the difference between = and == symbols in c programming?
Where is volatile variable stored?
What is the explanation for prototype function in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
How do I get a null pointer in my programs?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
How do we make a global variable accessible across files? Explain the extern keyword?
Can a pointer be null?
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(); }
How do I determine whether a character is numeric, alphabetic, and so on?
What is the use of linkage in c language?
What is the use of f in c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code