Answer Posted / ehsan
The time between sending and receiving the data,
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Why is it that not all header files are declared in every C program?
What's the difference between constant char *p and char * constant p?
What are the different types of objects used in c?
What happens if a header file is included twice?
What does s c mean on snapchat?
Differentiate between full, complete & perfect binary trees.
What is signed and unsigned?
How can I get the current date or time of day in a c program?
In a header file whether functions are declared or defined?
What is data type long in c?
What does void main () mean?
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
Why c is called a mid level programming language?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What is variable declaration and definition in c?