chandrabose's Profile
Baby
31
points

Questions
0

Answers
3

  • Love is a sweet unconditional emotion that all living organs have in common. It’s an affection which one individual have for others. In this century love is related to sexuality but the truth is love is caring for others.

    Love is not just between male and female.  The care we take to keep some one happy. Parents love their family so that they make a happy living and earning to satisfy the needs of every one in home.

    Obviously, missing someone you love will make you sad, it’s not about girlfriend or boyfriend, it can be your sister, brother, uncle any one for the matter. A dog for example, show its caring towards the humans, it guards the home and also plays with family members.  All the domestic animals have love to words humans.

    Today’s scenario has changed a lot, love just seems to be infatuation for many. The bond that existed between humans is no more real. If you meet a spiritual guru, you will see he loves the nature, he loves every part of god’s creation. This doesn’t exist in now, if the unconditional love happens to everyone, then the plant earth and human species will live longer with joy!!

    • 1834 views
    • 1 answers
    • 0 votes
  • Baby Asked on November 25, 2016 in Javascript.

      In case you have stored a string
      Ex: RAHUL
      This is called string variable. Here RAHUL is stored as 012345 and at the end of the string a Null character will be added. The compiler will automatically add the null character.

      R 0
      A 1
      H 2
      U 3
      L 4
      NULL 5

      What is the algorithm to reverse a string?

      We need to know the length of the string. To find the length of the string we use

      str len ();

      This functions find the length, which can be stored in a variable.

      Var = str len ();
      for (i = var-1; i>=0; i–)
      {
      print f (“%c”, str[i])

      ==========================================

      Follow the below program to Write a function to reverse a string without using concatenation

      # include < stdio.h>
      # include <conio.h>
      # include <string.h>
      main()
      {
      Char str(10);
      int len;
      printf(“enter a string”);
      scanf(“%s”, str);
      len=strlen (str);

      for (i=len-1; i>=0; i–)
      {

      printf(“%c”, str[i];
      }
      getch();
      }

      • 1299 views
      • 1 answers
      • 0 votes
    • WordPress is a content management system, that is used by webmasters to publish there posts.

      Adding a new post is pretty easy. Follow the steps below:

      1. Login to wordpress as Admin
      2. Once you login, you will find Posts section on the left hand side. Move the cursor over the posts and you will find the add new post along with other options.
      3. Click on “Add New” Now you will find the page to add the new post. With Title and content area.

      The newer versions of wordpress also provide you to add a post by clicking the “Add Post” located on the header of wordpress.

      RE: How to add a post into a word press?

      • 1658 views
      • 1 answers
      • 0 votes