implement OR gate without using any bitwise operator.
Post New Answer View All Answers
Explain how do you list files in a directory?
int far *near * p; means
What is operator promotion?
What is call by reference in functions?
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
Explain how can a program be made to print the line number where an error occurs?
How can I read a binary data file properly?
how do you execute a c program in unix.
Write a code of a general series where the next element is the sum of last k terms.
Explain how are portions of a program disabled in demo versions?
Which is better pointer or array?
What are the advantages of union?
How do you sort filenames in a directory?
What is %d called in c?
How is a macro different from a function?