write a program to display & create a rational number
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); }
What is meant by operator precedence?
What is dynamic memory allocation?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Can math operations be performed on a void pointer?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
wat is the difference between array and pointer?
What should malloc() do?
Explain what are linked list?
what are far pointers?
Program to find the absolute value of given integer using Conditional Operators