Posted on Leave a comment

Executable Block

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    div {
      background-color: aqua;
    }
  </style>
</head>
<body>
  <div>Hello Ocean</div>
</body>
</html>
Posted on Leave a comment

C block 1.2.4

//Write a Simple C Program Which prints Hello World.
#include<stdio.h>
#include<conio.h>
void main()
{
    printf("Hello World");
    getch();
}
//Write a Simple C Program Which prints Hello World.
#include<stdio.h>
#include<conio.h>
void main()
{
    printf("Hello World");
    getch();
}
//Write a Simple C Program Which prints Hello World.
#include<stdio.h>
#include<conio.h>
void main()
{
    printf("Hello World");
    getch();
}
Posted on 1 Comment

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

#include <iostream>
#include <iomanip> 
 
void main( ) {
  int x1=123,x2= 234, x3=789;
  cout << setw(8) << "Exforsys" << setw(20) << "Values" << endl
  << setw(8) << "test123" << setw(20)<< x1 << endl
  << setw(8) << "exam234" << setw(20)<< x2 << endl
  << setw(8) << "result789" << setw(20)<< x3 << endl;
}