Онлайн компилятор C

#include <stdio.h> int main() { // Write your code here int a; a=10; printf("Hello world!\n"); printf("anas"); printf("the value of variable a is %d", a) return 0; }
The program prints three lines of text and tries to print the value of the integer variable a, which is set to 10.

- Look closely at the last printf statement: check whether it ends with the required semicolon like the other statements.
- Notice that the output strings are printed one after another without newline characters, so think about how the final output will appear on the screen.