How can I read/write structures from/to data files?
No Answer is Posted For this Question
Be the First to Post Answer
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
How to reverse a linked list
1 Answers Aricent, Fidelity, IBM, TCS,
will u give me old quesrion papers for aptitude for L & t info tech?
What is #define?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
How does #define work?
What happens if header file is included twice?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
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 ?