ASCII character 7 is the BELL character, and it’s represented in C as \a
. Some terminals will produce a beep when this character is output on the terminal; nowadays, many don’t. (I’m looking at you, Ubuntu.)
Related Contents:
- Why does the C preprocessor interpret the word “linux” as the constant “1”?
- Concept behind these four lines of tricky C code
- Stack smashing detected
- How to convert an int to string in C?
- Why is the gets function so dangerous that it should not be used?
- C: Run a System Command and Get Output? [duplicate]
- Why was the switch statement designed to need a break?
- Turn a simple socket into an SSL socket
- How does strtok() split the string into tokens in C?
- C library function to perform sort
- Is unsigned integer subtraction defined behavior?
- What are vdso and vsyscall?
- C error: undefined reference to function, but it IS defined
- How can I read an input string of unknown length?
- What does EAGAIN mean?
- Visually what happens to fork() in a For Loop
- For vs. while in C programming?
- How to prevent GCC from optimizing out a busy wait loop?
- Passing an array by reference in C?
- Left shifting with a negative shift count
- How to define relative paths in Visual Studio Project?
- Pointers to pointers vs. normal pointers
- How do I get the unix timestamp in C as an int?
- “error: assignment to expression with array type error” when I assign a struct field (C)
- What registers to save in the ARM C calling convention?
- Copying a part of a string (substring) in C
- function declared static but never defined
- Type-safe generic data structures in plain-old C?
- How do I print a #defined constant in GDB?
- Does &((struct name *)NULL -> b) cause undefined behaviour in C11?
- Pipe buffer size is 4k or 64k?
- Is there a REPL for C programming? [closed]
- What is the difference between static and extern in C?
- How to include a dynamic array INSIDE a struct in C?
- Declaring and initializing arrays in C
- Stringification of a macro value
- What is the difference between str==NULL and str[0]==’\0′ in C?
- For loop with pointer in C
- Should functions be made “extern” in header files?
- Usage of \b and \r in C
- What is EOF in the C programming language?
- Stack allocation, padding, and alignment
- What is SOL_SOCKET used for?
- How to get ip address from sock structure in c?
- How to use Fused Multiply-Add (FMA) instructions with SSE/AVX
- Is it a good idea to compile a language to C?
- What is the difference between read and pread in unix?
- Expressions “j = ++(i | i); and j = ++(i & i); should be a lvalue error?
- C puts() without newline
- Detecting 64bit compile in C