Signup/Sign In

Answers

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

HTML5 added new features in HTML. It is not different from HTML, but just adds new tags and attributes to HTML so that modern web applications can be created using HTML elements. Now we have a lot of different INPUT types to create different types of input fields.

Support for Video and Audio tags, data- attributes, etc. a lot of things have been added.
2 years ago
Please share the level number and lesson number along with the code that you are trying to submit.
2 years 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.
2 years 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.
2 years ago
Please try now, it should work.
2 years 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.
2 years ago
Which Level? Is it Level 1?
2 years 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;

}
***
2 years ago
Yes, is there any problem.
2 years 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)
}
***
2 years 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.
2 years ago
Please share your code and the Lesson and Level number
2 years ago