f=(x>y)?x:y
a) f points to max of x and y
b) f points to min of x and y
c)error
Answer Posted / guest
Ans. A
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Write a program to find factorial of a number using recursive function.
How can I invoke another program or command and trap its output?
Why header files are used?
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
How can I find the modification date and time of a file?
What is a volatile keyword in c?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What is p in text message?
How do I use void main?
Can include files be nested?
Explain the use of #pragma exit?
What is typedef struct in c?
What is hash table in c?
List some applications of c programming language?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above