the question is that what you have been doing all these
periods (one year gap)
No Answer is Posted For this Question
Be the First to Post Answer
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
change to postfix a/(b+c*d-e)
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
Explain about C function prototype?
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???
write a programe returns the number of times the character appears in the string
What is string concatenation in c?
What is malloc() function?
Describe newline escape sequence with a sample program?
Why should I prototype a function?