up vote 13 down vote favorite
4
share [g+] share [fb]

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.

link|improve this question

2  
From gowrikumar.com/c – Emil H Jun 30 '09 at 20:37
feedback

13 Answers

up vote 33 down vote accepted

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|improve this answer
2  
technically you're comparing each variable to 0 – hasen j Jun 30 '09 at 20:44
17  
But I'm not using any comparison operators... – sth Jun 30 '09 at 20:45
3  
Fail if any of the values start out below zero. – Bill K Jun 30 '09 at 20:46
owned sir. . – user105033 Jun 30 '09 at 20:46
5  
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 '09 at 21:26
show 4 more comments
feedback

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|improve this answer
4  
+1 This one actually works for negative numbers too. – mkb Jun 30 '09 at 20:55
feedback

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|improve this answer
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 '09 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 '09 at 21:43
2  
For portability to architectures with weird sizes: a &= a >> (CHAR_BIT * sizeof(int) - 1). – Chuck Jun 30 '09 at 23:29
feedback

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|improve this answer
Haven't thought of that :-) – liori Jun 30 '09 at 20:40
feedback

Answer to bonus question:

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

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|improve this answer
I guess you need a subtraction there. – liori Jun 30 '09 at 20:43
Yeah, that would help. – Tom Hubbard Jun 30 '09 at 20:44
I'm not sure why the downvote, since this answer essentially duplicates the one below it. – rtperson Jun 30 '09 at 20:47
Same fail as the other--any var starting below 0 screws you up. – Bill K Jun 30 '09 at 20:56
@rtperson, it was an infinite loop for three values over zero when first posted. – Nosredna Jun 30 '09 at 21:09
feedback

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|improve this answer
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 '09 at 21:51
I just thought it would be fun. It's just a way of excluding it from the code. – Secko Jun 30 '09 at 21:57
1  
Please don't use void main(), even in joke code. – kmm Aug 18 '09 at 4:25
@kmm A joke is a joke! – Secko Aug 18 '09 at 23:35
I liked the joke. hehehe – bgbg Dec 21 '09 at 15:40
feedback

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|improve this answer
Isn't != a comparison operator? – Nosredna Jun 30 '09 at 21:07
@Nosredna it is! – Secko Jun 30 '09 at 21:16
1  
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 '09 at 21:18
another implementation of abs: graphics.stanford.edu/~seander/bithacks.html#IntegerAbs – Christoph Jun 30 '09 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 '09 at 21:27
feedback

Here's a hint.

link|improve this answer
feedback

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|improve this answer
your sign function uses comparison operators... – user83255 Jul 1 '09 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 '09 at 0:49
feedback

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

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

link|improve this answer
feedback

for second part

//#include <stdio.h>
int main(char *argv[printf("234")],int argc){}
link|improve this answer
feedback
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;
}

Above program is working, but i dint get logic......why shifting 31 times???

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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