Search:

Type: Posts; User: supernova_2706

Search: Search took 0.01 seconds.

  1. values not being switched inside the switch case structure

    #include <stdio.h>#include <stdlib.h>
    typedef struct noode
    {
    int data;
    struct noode *next;
    }node;
    void insertf(node **head,int data)
    {
    node* newn=malloc(sizeof(struct noode));
    ...
  2. inputting elements inside a 2 dimensional dynamically allocated array

    i want to input elements inside a 2 dimensional dynamically allocated array but unfortunatley it inputs only half of the elements of the declared size here is the code


    #include<stdio.h>...
  3. using pointer inside the for loop conditions

    #

    void modify(int *k)
    {
    *k+=5;
    }


    int main()
    {
Results 1 to 3 of 3