Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
formatting_input_and_output
//gcc 7.4.0 #include <stdio.h> int main(void) { printf("%-20d %d",1234,123); printf("\n%lf",1234.5656); printf("\na = %-+12.2f",123.336); printf("b = %-+7.2f",-123.45); printf("\n %7.4f \n %7.2f \n %-7.2f \n %f \n %10.2e \n %11.4e \n %-10.2e\n %e",98.7654,98.7654,98.7654,98.7654,98.7654,98.7654,98.7654,98.7654); return 0; }
run
|
edit
|
history
|
help
1
Project 4 v.6
incrementing values in an array
Loop practice
25/11/2021
loop
2-D array
18BCE2182 ASSESS_2 Q1
Assignment 3
Project 4 v.3
a3