Answer Posted / guest
top down approach
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is equivalent to ++i+++j?
How can variables be characterized?
How can I change their mode to binary?
What are keywords c?
What is a ternary operator in c?
How do you print an address?
What is a static function in c?
When should a far pointer be used?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What does printf does?
what is the difference between class and unio?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is the significance of an algorithm to C programming?
Ow can I insert or delete a line (or record) in the middle of a file?
What does != Mean in c?