Here's a solution that avoids using fmod at all. It works using the character representation of the number, checking whether the last digit is in {0, 2, 4, 6, 8}.
The big trouble is finding the last digit.
The restrictions of the problem are onerous.
- no binary operators: no assignments (
=) or array indexing ([]) or even structure reference (.)
- no logical operators: no negation (
!) or shortcut tricks (&&) or equality (==)
- no arithmetic operators: no increment (
++)
- no
if or switch
- only one
printf
About the only operators left are *, &, ~, ?: and sizeof.
Most of the code is trying to find the last digit in the string. The only binary operator used is in the main() driver, to get argv[1]. (The square brackets for c[2] are declaration syntax, not an operator)
I worked around assignment by using a function call, and memcpy.
I worked around if by using while and munging the test.
I worker around != by assuming NULL == 0.
On the plus side, this function works with really big numbers!
#include <string.h>
#include <stdio.h>
void* null_pointer;
char c[2];
// If s is not null, copy *s to *save, and change *s to '~'
// Return s
char* copy_zap_char_not_null(char* save, char* s) {
char* p;
memcpy(&p, &s, sizeof(char*));
while (p) {
memcpy(save, p, sizeof(char));
memcpy(p, "~", sizeof(char));
memcpy(&p, &null_pointer, sizeof(void*));
}
return s;
}
int print_even_odd(char* s)
{
while (copy_zap_char_not_null(c, strpbrk(s, "0123456789"))) {}
printf("%s\n", ( strpbrk(c, "02468") ? "even" : "odd" ) );
}
int main(int argc, char** argv)
{
print_even_odd(argv[1]);
}
[]operator. But this array based solution would be much easier to write up with designated initializers, which is C99. so my guess would be that Microsoft wouldn't allow that either? Just crazy. Confirms me much in my opinion to avoid buying products from vendors that have recruting criteria like this. – Jens Gustedt Dec 18 '11 at 9:03