Search:

Type: Posts; User: Arshad Nazeer

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    3,468

    Please may I know how to browse these libraries...

    Please may I know how to browse these libraries of C language in Ubuntu? I want to write vanilla code to plot a graph a graph in two dimensions.
  2. Replies
    4
    Views
    3,468

    Libraries Of C with Ubuntu

    I work on Ubuntu. I am familiar with Turbo C and I used to browse the libraries in Turbo C quite easily. Now, since I am on Ubuntu I want to know how I may browse the libraries.
    Thank you.
  3. Thanks for the reply. I think I was a little...

    Thanks for the reply.
    I think I was a little aware that I have used statments:


    myfunction fun = &numbers;
    int a = 2;
    int *y;
    y = fun(&a); // fun, function pointer is pointing to int*...
  4. How to create a generic Function Pointer?

    The following is the code that I am currently struggling with:
    I want to have a function pointer whose return type can be of any data type and whose arguments can be of any data type (there can be...
  5. #include char ( *strings(char (*)[10])...

    #include<stdio.h>
    char ( *strings(char (*)[10]) )[10];

    int main()
    {
    int i;
    char mystring[5][10];
    char (*ptrstring)[10];
    printf("Enter strings:\n");
    for (i = 0; i < 5;...
  6. How to return address of multi-dimensional char array from a function?

    Hello, I am trying to return the address of a two-dimensional array after passing it to a function and collecting it in **ptrstring.
    The code does not compile successfully.
    How do I return address...
Results 1 to 6 of 6