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
How can I find out if there are characters available for reading?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is the meaning of typedef struct in c?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
What is 02d in c?
Why is malloc used?
When should you use a type cast?
what is a far pointer
12 Answers ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
Why is it usually a bad idea to use gets()? Suggest a workaround.
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
What are the primitive data types in c?
What is external variable in c?