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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
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'
Please
log in
or register to answer this question.
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;
}
Please
log in
or register to add a comment.
0
votes
answered
Jul 24, 2019
by
UDAY
#include<stdio.h>
main
{
PRINTF("HOW R U");
PRINTF("IAM FINE");
}
Please
log in
or register to add a comment.
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();
}
}
Please
log in
or register to add a comment.
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);
}
}
Please
log in
or register to add a comment.
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");
}
}
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...