saving . . . saved assignment has been deleted. assignment has been hidden .
assignment
Title
Question
How to do assignment


C-and-Cpp First-C-Program 11-12 min 50-60 sec 22-11-21, 5:06 p.m. saimallik7670@gmail.com

Answers:

<span style="background-color: rgb(250, 250, 250);">#include<stdio.h></span>
int main()
{
  printf("welcome to the world of c");
  return 0;
}
22-11-21, 5:08 p.m. saimallik7670@gmail.com



#include<iostream>
using namespace std;
int main ()
{
int a,b;
cout<<"enter the value of a,b\n";
cin>>a>>b;
if(a>b)
{
cout<<"a is greater than b\n";
}
if(a<b)
{
cout<<"a is less than b\n";
}
return 0;
}
23-11-21, 7:06 a.m. smvb9398778939@gmail.com


#include<stdio.h>
</span>
int main()
{
  printf("welcome to the world of c");
  return 0;
}
23-11-21, 7:08 a.m. smvb9398778939@gmail.com
Welcome to the word of c
25-12-21, 12:36 p.m. ashishtonglu843@gmail.com

Login to add comment


Log-in to answer to this question.