Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

Please share the level number and lesson number along with the code that you are trying to submit.
11 months ago
Can you please share the level number and lesson number along with the code that you are trying to Submit so that we can check.
11 months ago
Hey, on which lesson are you? You should see the Editor and when you complete the exercise you move on to the next lesson. But if you are using a Mobile device, then you should use the Tabs at the top.

You can get in touch with our support by sending in WhatsApp on number +919354261828. You can share a screenshot or may be a screen recording so that we can help you.
11 months ago
Please try now, it should work.
11 months ago
Hey, you can get in touch with our support by sending in WhatsApp on number ?+919354261828?. You can share a screenshot or may be a screen recording so that we can help you.
11 months ago
Which Level? Is it Level 1?
12 months ago
Sorry, there was some issue with the message. It has been corrected now.
The correct code for this lesson is:
***
#include

int main() {

double doubly = 12345.123456;
long int longy = 12345678900;
short int shorty = 1234;
unsigned char ch = 'Z';

printf("This is doubly: %lf\n", doubly);
printf("This is longy: %ld\n", longy);
printf("This is shorty: %ld\n", shorty);
printf("This is ch: %c", ch);
return 0;

}
***
12 months ago
Yes, is there any problem.
12 months ago
You do not have to write the correct code. I think the instructions can be improved a little.
As you haven't learned about the _ as of Lesson 1 of Level 5 so you don't have to use it. This program should give an error because you will learn about using _ to handle response and error in the coming lessons.

Try this code:

***
package main

import (
"fmt"
"bufio"
"os"
)

func main() {
fmt.Println("Enter a number:")
reader := bufio.NewReader(os.Stdin)
userInput := reader.ReadString('\n')
fmt.Println(userInput)
}
***
12 months ago
Hi, please send in the details and the changes that you need on the certificate to abhishek@studytonight.com and I will try to get it fixed asap.
12 months ago
Please share your code and the Lesson and Level number
one year ago
Can you try this code for your if condition:
***
if(cookie.search("Hello=World") >= 0)
{
console.log("Cookie found");
}
***
one year ago