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
biggest of two no's with out using if condition statement
What is the use of typedef in structure in c?
What is openmp in c?
Famous puzzles which are generally asked by companies during interviews ?
how write a addtion of two single dimensional array using of pointer in c language?
What is the use of #include in c?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
a C prog to swap 2 no.s without using variables just an array?
Explain is it better to bitshift a value than to multiply by 2?
What are two dimensional arrays alternatively called as?
How does placing some code lines between the comment symbol help in debugging the code?