c programs are converted into machine language with the help of
a) an interpreter
b) a compiler
c) an operatinf system
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is C++
What will the preprocessor do for a program?
what does ‘Bus Error’ mean?
What are the three constants used in c?
print a "hello" word without using printf n puts in c language
what is the defrenece between structure and union
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
What is pointer to pointer in c language?
How is actual parameter different from the formal parameter?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
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(); }