Search:

Type: Posts; User: usmadhav79

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,659

    1. A hardware timer is programmed to periodically...

    1. A hardware timer is programmed to periodically inerrupt the CPU (called timer interrupt).Time elapsed between two successive interrupts is called a jiffie.Which is 10ms in case of Linux system....
  2. Thread: recursion?

    by usmadhav79
    Replies
    5
    Views
    1,049

    one more good example is to calculate factoraial....

    one more good example is to calculate factoraial.

    factorial(int n)
    {
    if(n==1)
    return 1;
    ...
  3. Replies
    4
    Views
    1,783

    You use extern to DECLARE a variable.It tells the...

    You use extern to DECLARE a variable.It tells the compiler to look for the DEFINITON of the variable in one of the included header files. No memory is allocated when you declare it using extern.
  4. Replies
    13
    Views
    10,685

    will this also work? int i; i='A'; ...

    will this also work?
    int i;
    i='A';
    printf("%d",i)//prints ASCII value of 'A'
Results 1 to 4 of 4