What is time null in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain two-dimensional array.
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
How would you obtain the current time and difference between two times?
ASCII stands for
what is diference between return 0 and return NULL??
What is function pointer c?
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
what does exit() do?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)