Thursday, April 9, 2020

It has four legs and it can fly, what is it?

It has four legs and it can fly, what is it?


-

Two birds.

What to do at home at the time of lock down?

What to do at home at the time of lock down?


First thing is to be positive and don't loose hope.
Keep yourself busy by doing following things inside your home:

  • Painting as you wish to do.
  • Sketching as per your art.
  • Exercise normally which will keep you fit and healthy
  • Do meditation
  • Do Yoga
  • Reading books, articles , studies, etc.
  • Writing a book which will be inspirational our guidance for others or some poetry, shayari.
  • Cooking try new dishes to learn.
  • Spend time with your family happily.
  • Play indoor games with children's.
  • Call to your relatives and talk with them.
  • Work from home by doing your work digitally by laptop or smartphone.
  • Online course complete a course which can be done online and get a Certificate.
  • Make video which will be inspirational our guidance for others.
  • Watch movies on TV or You-tube online
  • Help at home for doing regular work like cleaning, washing clothes utensils and so on.
  • Make a time table for regular activities.
  • Listen music which you love.
  • Prepare for your competitive exams.
  • The students can start their studies of next class online.
  • Stay at home and stay safe .
  • Follow government guidelines.
  • Eat healthy food and fruits.
  • Help the poor and needy.
  • There are many more work which can be done which we love to do at home.
  • Don't get panic and be aware of it.
  • Pray to god that everything will get normal as it was previously.
  • Love whatever you do.


Tuesday, April 7, 2020

Write a program in C to count number of words and characters in a file.

Write a program in C to count number of words and characters in a file.

#include
#include

void main()
{
    FILE *fptr;
    char ch;
    int wrd=1,charctr=1;
    char fname[20];
    printf("\n\n Count the number of words and characters in a file :\n");
printf("---------------------------------------------------------\n");
printf(" Input the filename to be opened : ");
scanf("%s",fname);   

    fptr=fopen(fname,"r");
    if(fptr==NULL)
     {
         printf(" File does not exist or can not be opened.");
      }
    else
        {
          ch=fgetc(fptr);
          printf(" The content of the file %s are : ",fname);
          while(ch!=EOF)
            {
                printf("%c",ch);
                if(ch==' '||ch=='\n')
                    {
                        wrd++;
                    }
                    else
                    {
                        charctr++;
                    }
                ch=fgetc(fptr);
            }
        printf("\n The number of words in the  file %s are : %d\n",fname,wrd-2);
        printf(" The number of characters in the  file %s are : %d\n\n",fname,charctr-1);
        }
    fclose(fptr);
}


Output:

Count the number of words and characters in a file : 
-----------------------------------------------------   
Input the filename to be opened : sample.txt
The content of the file sample.txt are :
test line 1
test line 2
The number of words in the  file test.txt are : 6 
The number of characters in the  file test.txt are : 18

Write a C program to count number of words in a given text or sentence.

Write a C program to count number of words in a given text or sentence.

#include
#include

void main()
{
    char s[200];
    int count = 0, i;

    printf("Enter the string:\n");
    scanf("%[^\n]s", s);
    for (i = 0;s[i] != '\0';i++)
    {
        if (s[i] == ' ' && s[i+1] != ' ')
            count++;    
    }
    printf("Number of words in given string are: %d\n", count + 1);
}





Output:

Enter the string:
welcome to vijaymarwaha.blogspot.com blog
Number of words in given string are: 4

Write a program in php to print the multiplication table of 9

Write a program in php to print the multiplication table of 9:

Answer:

<? php
define('a', 9);   
for($i=1; $i<=10; $i++)   
{   
  echo $i*a;   
  echo '<br>';     
}  
?>

From Side Hustle to Main Income: 7 Proven Ways to Make Money Online in 2025

  From Side Hustle to Main Income: 7 Proven Ways to Make Money Online in 2025 Introduction: The New Era of Earning – Why 2025 is Your Year t...