Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Write a program to print 'HOW R U'. Print 'I AM FINE'

0 votes
asked Jul 21, 2019 by anonymous
Print 'HOW ARE YOU'
Print 'I AM FINE'

5 Answers

+1 vote
answered Jul 23, 2019 by anonymous

#include<stdio.h>

int main()

{

printf("HOW ARE YOU\n");

printf("I AM FINE");

return 0;

}

0 votes
answered Jul 24, 2019 by UDAY
#include<stdio.h>

main

{

          PRINTF("HOW R U");

          PRINTF("IAM FINE");

}
0 votes
answered Jul 27, 2019 by AYUSH SHA
#include<iostream.h>

#include<conio.h>

{

void main()

clrscr()

{

cout<<"HOW ARE YOU"<<endl;

{

cout<<"I AM FINE";

}

getch();

}

}
0 votes
answered Jul 29, 2019 by Jit Esh (140 points)
public class Main{

public static void main (String[] args)

{

String a = "HOW ARE YOU";

String b = "I AM FINE";

System.out.println(a);

System.out.println(b);

}

  }
0 votes
answered Jul 30, 2019 by Divyanjali (140 points)
public class Main

{

public static void main(String[] args) {

System.out.println("HOW ARE YOU");

System.out.println("I AM FINE");

}

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...