#include <stdio.h>
Go to the source code of this file.
|
| int | main (int argc, char *argv[]) |
◆ BIT
◆ BIT_CLEAR
| #define BIT_CLEAR |
( |
| x, |
|
|
| n ) |
◆ BIT_GET
◆ BIT_SET
◆ BIT_TOGGLE
| #define BIT_TOGGLE |
( |
| x, |
|
|
| n ) |
◆ BIT_WRITE
| #define BIT_WRITE |
( |
| x, |
|
|
| n, |
|
|
| v ) |
◆ ES_PAR
◆ main()
| int main |
( |
int | argc, |
|
|
char * | argv[] ) |
Definition at line 11 of file Ejemplo024.c.
12{
13 int x, nb, i;
14 printf("x = ");
15 scanf("%d", &x);
16 printf("b = ");
17 scanf("%d", &nb);
18 for(i=7; i>-1; i--)
20 printf("\n");
22 printf("%d\n", x);
23 return 0;
24}