• printf is a C standard library function that formats text and writes it to standard output. The name, printf is short for print formatted where print refers...
    27 KB (2,297 words) - 00:22, 7 May 2024
  • Thumbnail for Printf (Unix)
    In Unix and Unix-like operating systems, printf is a shell builtin (and utility program) that formats and outputs text like the same-named C function....
    3 KB (296 words) - 09:22, 13 April 2024
  • kernel log. It provides a printf-like abstraction and its parsing of the format string and arguments behave similarly to printf. It acts as a debugging...
    7 KB (682 words) - 00:20, 2 April 2024
  • Thumbnail for C syntax
    appended to strings at compile time: printf(__FILE__ ": %d: Hello " "world\n", __LINE__); will expand to printf("helloworld.c" ": %d: Hello " "world\n"...
    76 KB (9,787 words) - 10:26, 7 March 2024
  • 0; i--) { putchar(x & (1u << i) ? '1' : '0'); } printf("\n"); } int main( void ) { int j = 5225; printf("%d in binary \t\t ", j); showbits(j); /* the loop...
    16 KB (1,863 words) - 05:14, 9 November 2023
  • k){if(k<1||k>2){printf("out of range\n"); printf("this function requires a value of 1 or 2\n");}else{ printf("Switching\n");switch(k){case 1:printf("1\n");break;case...
    12 KB (1,291 words) - 18:15, 4 February 2024
  • %s may refer to: %s, in printf format string %s, in scanf format string %s, seconds in the strftime format string %s, used to check the Unix timestamp...
    610 bytes (95 words) - 20:45, 21 September 2023
  • continue; case ')': printf("))))"); continue; case '^': printf(")^("); continue; case '*': printf("))*(("); continue; case '/': printf("))/(("); continue;...
    16 KB (1,828 words) - 15:51, 29 January 2024
  • (age) { case 1: printf("You're one."); break; case 2: printf("You're two."); break; case 3: printf("You're three."); break; case 4: printf("You're three...
    21 KB (2,728 words) - 15:02, 28 April 2024
  • (repeat--) { printf("process(%d)\n", i ); printf("process(%d)\n", i + 1); printf("process(%d)\n", i + 2); printf("process(%d)\n", i + 3); printf("process(%d)\n"...
    27 KB (3,268 words) - 17:22, 8 February 2024