Search:

Type: Posts; User: daudiam

Search: Search took 0.01 seconds.

  1. How are native system calls made in standard C functions ?

    In the source code of C library functions, are native system calls to the OS directly made (eg. in the fopen() function, the read system call) or is it that the C program calls the corresponding...
  2. Thanks.

    Thanks.
  3. Why did the string become immutable in this function ?

    I compiled the following code on gcc :


    # include <stdio.h>
    fun(char str[100])
    {
    str[0]='c';
    }
    int main()
    {
Results 1 to 3 of 3