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
No Answer is Posted For this Question
Be the First to Post Answer
What are 'near' and 'far' pointers?
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
How can I copy just a portion of a string?
WHAT IS MEANT BY LIFE?
what is the importance of spanning tree?
what is diference between return 0 and return NULL??
List some of the static data structures in C?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Explain the use of keyword 'register' with respect to variables.
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
what is the difference between getch() and getche()?
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????