Answer Posted / mohammed
Important pitfalls
Value of the variable stored in register of cpu not for memory
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is a function in c?
How can I remove the trailing spaces from a string?
What is meant by 'bit masking'?
Is it valid to address one element beyond the end of an array?
Why ca not I do something like this?
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
Difference between malloc() and calloc() function?
Write a program of prime number using recursion.
What happens if you free a pointer twice?
Do you have any idea how to compare array with pointer in c?
When should the const modifier be used?
explain what are pointers?
what are the facialities provided by you after the selection of the student.
How can you draw circles in C?
What does the message "automatic aggregate intialization is an ansi feature" mean?