Sunday 7 February 2016

Record Screen with audio in Linux using shell script | Very Easy

Here is a video which will help you to record your screen on Linux:



This is really a best method to record screen with audio on Linux and this is also very easy to do.
You can do it in  few minutes.

3 comments:

  1. https://www.codechef.com/ICL2016/problems/ICL16C

    ReplyDelete
  2. #include
    #include
    int main()
    {
    long long n;
    int t;
    std::cin>>t;
    for(int j = 0; j < t; j++)
    {
    std::cin>>n;
    long long a = 1, b = 1, c = n;
    long long i;
    for(i = 0 ; i < n; i++)
    {
    a = a * pow(b, c);
    b++;
    c = n - b + 1;
    }
    std::cout<< a % (long long)(pow(10, 9)+7)<<std::endl;
    }
    return 0;
    }

    ReplyDelete