











0Notifications Mark All Read
- Login
- Get Prime
Wipro NTH Coding Question- 23
Access Denied!
To view this page you have to login first
Login here -
Trivia
Did you know 1 million people use PrepInsta everyday?
Notifications Mark All Read
To view this page you have to login first
Login here -
Did you know 1 million people use PrepInsta everyday?
#include
int main()
{
int a,b;
scanf(“%d”,&a);
printf(“result is %d”,a<<3);
return 0;
}
please answer in C language
#include
using namespace std;
int main()
{
int res=0;
for(int i=1;i<=10;i++)
{
res=i<<3;
cout<<res<<endl;
}
return 0;
}
#include
main()
{
int n;
printf(“Enter the number to multiply: “);
scanf(“%d”, &n);
printf(“8 multiplied by %d is %d”, n, n<<3);
}