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

Post New Answer

More C Interview Questions

given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)

6 Answers   amu, TCS,


Is it valid to address one element beyond the end of an array?

0 Answers  


What is the purpose of #pragma directives in C?

2 Answers  


Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?

0 Answers  


When should structures be passed by values or by references?

0 Answers   Adobe,


how to introdu5ce my self in serco

0 Answers  


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

0 Answers  


What is a macro, and explain how do you use it?

0 Answers  


how to copy a string without using c function

5 Answers  


What are enums in c?

0 Answers  


What will happen when freeing memory twice

2 Answers  


How do you print only part of a string?

0 Answers  


Categories