What is page thrashing?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
what are bitwise shift operators?
Explain setjmp()?
What does sizeof int return?
what is disadvantage of pointer in C
how to add numbers without using arithmetic operators.
What is pointers in c?
how do you execute a c program in unix.
Is c is a middle level language?
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
Why is extern used in c?
Which function in C can be used to append a string to another string?