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
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)
Is it valid to address one element beyond the end of an array?
What is the purpose of #pragma directives in C?
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?
When should structures be passed by values or by references?
how to introdu5ce my self in serco
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is a macro, and explain how do you use it?
how to copy a string without using c function
What are enums in c?
What will happen when freeing memory twice
How do you print only part of a string?