Define the scope of static variables.
No Answer is Posted For this Question
Be the First to Post Answer
what are non standard function in c
c program to add and delete an element from circular queue using array
Why is the code below functioning. According to me it MUST NOT.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
Describe the steps to insert data into a singly linked list.
In which layer of the network datastructure format change is done
What is a pointer in c?
find largest of 3 no
create an SINGLE LINKED LISTS and reverse the data in the lists completely
how to sort two array of characters and make a new array of characters.
What is wild pointer in c?