What is a structure member in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
What is pointer to pointer in c language?
Explain how do you declare an array that will hold more than 64kb of data?
What is c method?
program to find the roots of a quardratic equation
What is spaghetti programming?
What is wrong with this statement? Myname = 'robin';
Explain what will the preprocessor do for a program?
what is the difference between getch() and getche()?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What are the uses of null pointers?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?