This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # include <stdio.h> | |
| # include <stddef.h> | |
| // x: A function taking short and returning char. | |
| char x (short); // Usage: char c = x ('H'); | |
| // x (); // A function | |
| // x (short); // taking short | |
| // char x (short); // and returning char. | |
| // y: A pointer to a function taking short and returning char. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| basic types # complete object types | |
| { | |
| char | |
| signed integer types | |
| { | |
| standard signed integer types | |
| { | |
| signed char | |
| short | |
| int |
NewerOlder