Can you pass an entire structure to functions?
No Answer is Posted For this Question
Be the First to Post Answer
How can you pass an array to a function by value?
regarding pointers concept
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
write a program that will print %d in the output screen??
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
list the no of files created when c source file is compiled
in linking some of os executables are linking name some of them
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is c language and why we use it?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
How do you do dynamic memory allocation in C applications?
What is the best style for code layout in c?