/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
int nb1 = 70, nb2 = 82;
char lettre = 'c';
float nb3 = 30.56;
printf("Sur une ligne : %d - %d - %c - %0.2f\n", nb1, nb2, lettre, nb3);
printf("Une variable par ligne : \n%d\n%d\n%c\n%0.2f\n", nb1, nb2, lettre, nb3);
return 0;
}