vote up 10 vote down star
3

I found this question online and have been struggling to come up with an answer to it on my own.

Bonus question I found. Write hello world in C without using a semicolon.

flag

1  
From gowrikumar.com/c – Emil H Jun 30 at 20:37

12 Answers

vote up 25 vote down check

Smallest number (for non-negative numbers):

int smallest(int a, int b, int c) {
  int s = 0;
  while (a && b && c) {
    s++;
    a--; b--; c--;
  }
  return s;
}

Hello world:

#include <stdio.h>

int main() {
  if (printf("Hello world")) {}
}

Edit:

A variation of the above function working for all integers:

int smallest(int a, int b, int c) {
  int test = INT_MIN;
  while ((a-test) && (b-test) && (c-test))
    test++;
  return test;
}
link|flag
1  
technically you're comparing each variable to 0 – hasen j Jun 30 at 20:44
12  
But I'm not using any comparison operators... – sth Jun 30 at 20:45
3  
Fail if any of the values start out below zero. – Bill K Jun 30 at 20:46
owned sir. . – unknown (google) Jun 30 at 20:46
3  
Of course this is not efficient. But if you'd want a fast function for real use, you would just use comparison operators... – sth Jun 30 at 21:26
show 4 more comments
vote up 2 vote down

Here's a hint.

link|flag
vote up 7 vote down

Answer to bonus question:

#error "Hello world"
link|flag
You can't actually run that as an executable now can you? – Skizz Jun 30 at 20:40
5  
Well, the question did not state anything about being compilable... still it prints the string. – liori Jun 30 at 20:41
vote up 10 vote down

The bonus question is quite easy:

#include <stdio.h>
int main (int argc, char *argc [])
{
  while (printf ("Hello world!\n") == 0)
  {
  }
}

although there are lots of semi-colons in the #include'd file - is that OK?

Skizz

link|flag
Haven't thought of that :-) – liori Jun 30 at 20:40
vote up 5 vote down

Since 0 in C means false you could just do something like the following. All three args would have to be positive.

I'm very rusty at C. so, Pseudo C:

ct=0;
while(var1 && var2 && var3){
    var1--;
    var2--;
    var3--;
    ct++;
}
printf("%d",ct);
link|flag
I guess you need a subtraction there. – liori Jun 30 at 20:43
Yeah, that would help. – Tom Hubbard Jun 30 at 20:44
I'm not sure why the downvote, since this answer essentially duplicates the one below it. – rtperson Jun 30 at 20:47
Same fail as the other--any var starting below 0 screws you up. – Bill K Jun 30 at 20:56
@rtperson, it was an infinite loop for three values over zero when first posted. – Nosredna Jun 30 at 21:09
vote up 0 vote down

Answer to Bonus Question

link|flag
vote up 20 vote down

You can use bit twiddling to get the min or two integers, also unlike the other answers which use repeated subtraction, this solution supports negative numbers.

(min/max from http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax)

#include <limits.h>
#include <stdio.h>

int main() {
    int x = 2;
    int y = 1;
    int z = 3;
    int r;

    r = y + ((x - y) & ((x - y) >> (sizeof(int) * CHAR_BIT - 1)));
    r = z + ((r - z) & ((r - z) >> (sizeof(int) * CHAR_BIT - 1)));

    printf("%d\n", r);
}

NOTE: this depends on integers being implemented with 2's complement. I think this is fair game since we are talking about using tricks to do something which has an obvious and simpler solution anyway.

link|flag
4  
+1 This one actually works for negative numbers too. – Matt Kane Jun 30 at 20:55
vote up 15 vote down

Without using a comparison operator and handles negative numbers (using minmax)

int main() {
    int v1 = smallest(-12, 12, 13);
    int v2 = smallest(-12, -14, -13);
    int v3 = smallest(11, 12, 13);
}

int smallest(int a, int b, int c)
{
   return min(min(a, b), c);
}

int min(int a, int b)
{
    a -= b;
    a &= a >> 31;
    a += b;
    return a;
}
link|flag
awesomest! I was trying a bit shifting solution and it descended quickly into hell. Glad I hit "load new answers" before submitting. – Bill K Jun 30 at 21:13
Of course, you're assuming that ints aren't larger than 32 bits (not required by the standard). – Nick Bastin Jun 30 at 21:43
For portability to architectures with weird sizes: a &= a >> (CHAR_BIT * sizeof(int) - 1). – Chuck Jun 30 at 23:29
vote up 2 vote down

Another example:

void main()
{
   if(printf("Hello World!")){}
}

Yet another example:

void main()
{
    printf("Hello World!") nosemicolon
}

Compile with:

gcc -Dnosemicolon=; ctest.c -o ctest
link|flag
1  
In your second example you are still using a semicolon. If this was allowed then you could turn all the comparison operators into macros and cheat for the first challenge. – dreamlax Jun 30 at 21:51
I just thought it would be fun. It's just a way of excluding it from the code. – Secko Jun 30 at 21:57
1  
Please don't use void main(), even in joke code. – kmm Aug 18 at 4:25
@kmm A joke is a joke! – Secko Aug 18 at 23:35
vote up 3 vote down

Here's my smallest of three solution. It doesn't use the inefficent while loop and appears to cope with negative values. I haven't tested it thoroughly but the maths looks OK to me:

#include <stdio.h>

int myabs (int a)
{
  return (((~a) + 1) & (a >> 31)) | (a & ~(a >> 31));
}

int smaller (int a, int b)
{
  return (a + b - myabs (a - b)) / 2;
}

int main (int argc, char *argv [])
{
  int
    a, b, c;

  if (argc != 4)
  {
    printf ("Error\n");
  }
  else
  {
    a = atoi (argv [1]);
    b = atoi (argv [2]);
    c = atoi (argv [3]);

    printf ("Smallest of %d, %d and %d is %d\n", a, b, c, smaller (smaller (a, b), c));
  }
}

Skizz

link|flag
Isn't != a comparison operator? – Nosredna Jun 30 at 21:07
@Nosredna it is! – Secko Jun 30 at 21:16
Yeah I'm sure he just forgot because it could pretty easily be changed to if(!(argc - 4))--and that has nothing to do with the algorithm to implement the math part anyway. – Bill K Jun 30 at 21:18
another implementation of abs: graphics.stanford.edu/~seander/… – Christoph Jun 30 at 21:19
Great job for implementing abs, but I think it would be allowable to get abs() from the math lib as well. – Nosredna Jun 30 at 21:27
vote up 1 vote down

Not the fastest implementation, but more general (ie computes the minimum of an arbitrary number of integers), works with negative numbers and reasonably clear:

#include <limits.h>

int sign(int x)
{
    // portable, no branching:
    return (x > 0) - (x < 0);

    // non-portable, no comparisons:
    return +1 | (x >> (sizeof(int) * CHAR_BIT - 1));
}

int abs(int x)
{
    return sign(x) * x;
}

int min2(int a, int b)
{
    return ((a + b) - abs(a - b)) / 2;
}

int _min(unsigned n, int values[n])
{
    int m = INT_MIN;
    while(n--) m = min2(m, values[n]);
    return m;
}

#define min(...) \
    _min(sizeof((int []){ __VA_ARGS__ }) / sizeof(int), (int []){ __VA_ARGS__ })

extern int printf(const char *, ...)

int main(void)
{
    printf("%i", min(-5, 1, -2));
}
link|flag
your sign function uses comparison operators... – ilproxyil Jul 1 at 0:08
@ilproxyil: that's true; but the requirement 'don't use comparison operators' is pretty arbitrary; a far more useful requirement would be 'don't use branching'; anyway, I added a comparison-free version – Christoph Jul 1 at 0:49
vote up 0 vote down

Reference: http://stackoverflow.com/questions/476800/comparing-two-integers-without-any-comparison

Next, we can raise a question to compare four integers. :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.