What is the purpose of the preprocessor directive error?
No Answer is Posted For this Question
Be the First to Post Answer
difference between the array and linked list general difference related to memory
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 to write a data 10 in address location 0x2000
what is diff b/w huge & far & near pointer??
Explain high-order and low-order bytes.
How can you draw circles in C?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Explain the concept and use of type void.
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
what is the use of using linked list and array?
what is an inline fuction??
What is file in c preprocessor?