No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
use fibonaci(int n) { if(n==1) return o; if(n==2) return 1; return fibonaci(n-1)+fibonaci(n-2); }
hi, what is the difference between [COLOR=red]static[/COLOR] and [COLOR=red]shared[/COLOR] library how do we create them and what is the extension used for both of
hi, what is the difference between a library function and a system call
hi, in udp communication when ever we call socket -> [COLOR=red]recvfrom[/COLOR] ->sendto ->close in client and socket ->bind->[COLOR=red]sendto[/COLOR]->recvfrom->close in server then how a server connect to particular client if connected then how a server connects to other client [COLOR=red]there is no bind system call in client[/COLOR] Thanks in advance
hi all, i have a question 1) how can we change the value of a macro during compilation time tell me with an example 2) what is difference between exception and memory leak. how to handle exception in c 3) where are the extern and register variables stored(text,data,BSS,heap,stack)
how to allocate memory for a two dimensional array dynamically please need code for that one
hi, how to find out a point in a linked list there is a circular linked list i need to point out when the circular linked list has started in a linked list
The End.
srinath.sec