i have a written test in tomorrow
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
how to swap two nubers by using a function with pointers?
Why is #define used?
What is adt in c programming?
WAP – represent a char in binary format
Write a program for print infinite numbers
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
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
What is malloc return c?
what is data structure.in linear and non linear data structures which one is better?Explain
write a program to convert a expression in polish notation (postfix) to inline (normal)
prototype of sine function.