mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 08:35:42 +01:00
11 lines
87 B
C
11 lines
87 B
C
#include <stdio.h>
|
|
|
|
main()
|
|
{
|
|
printf("The value is %i\n", ~(1 << 1));
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
}
|