can we implement multi-threads in c.
No Answer is Posted For this Question
Be the First to Post Answer
The statement, int(*x[]) () what does in indicate?
What are nested functions in c?
Is c procedural or object oriented?
What is difference between union All statement and Union?
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
What is information technology.
What are the different pointer models in c?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
What is Your Name :)
what is the difference between strcpy() and memcpy() function?
What are the 5 types of inheritance in c ++?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none