What is the relationship between pointers and data structure?
No Answer is Posted For this Question
Be the First to Post Answer
please give me some tips for the placement in the TCS.
Why c is a procedural language?
code for find determinent of amatrix
Is c programming hard?
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
Can a binary search tree be used as an index? If yes, how? Explain
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Give the rules for variable declaration?
why do we use # in c-language?
Can we change the value of #define in c?
Explain the priority queues?
What are the main characteristics of c language describe the structure of ac program?