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