What is pre-emptive data structure and explain it with example?
No Answer is Posted For this Question
Be the First to Post Answer
What is the explanation for cyclic nature of data types in c?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
What does %p mean c?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
void main() { int a=1; while(a++<=1) while(a++<=2); }
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
write a programming in c language, 1 3 5 7 9 11
In C language what is a 'dangling pointer'?
difference between the array and linked list general difference related to memory
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y