Answer Posted / kisna
by using two pointers
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
I need a sort of an approximate strcmp routine?
What does struct node * mean?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Is it acceptable to declare/define a variable in a c header?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is the use of linkage in c language?
Why is c faster?
What is #error and use of it?
in linking some of os executables are linking name some of them
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
what are non standard function in c
Write a program to swap two numbers without using third variable?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
How to find a missed value, if you want to store 100 values in a 99 sized array?