Category: Array

21
May
2017

Typedef Enum Union Project

code: #include<stdio.h> typedef union { double weight; int size; char color[10]; } Description; typedef struct { int…

21
May
2017

Using function with Struct user defined type also pointer

code: #include<stdio.h> typedef struct { int roll; char name[20]; double gp; } sTudent; void inputStudent(sTudent *sp) {…

21
May
2017

Array of String

theortecical concept source: http://stackoverflow.com/questions/20347170/char-array-and-char-array code: char *array = “One good thing about music”; char array[] = {“One”,…

20
May
2017

2d array dynamically with pointer/basics of 2d array

code: //dynamically 2d array #include<stdio.h> #include<stdlib.h> int **allocate(int nRows,int nCols) { int **p; p=(int**)malloc(nRows*sizeof(int*)); if(p==NULL) exit(0); int…

19
May
2017

Char Pointer Practical Example Using String Input and String/Char Variable Passing

code: #include<stdio.h> void toggleChar(char *sptr){ int i; for(i=0;*(sptr+i)!=’\0′;i++) { if(*(sptr+i)>=’a’ && *(sptr+i)<=’z’) *(sptr+i)=*(sptr+i)-32; else if(*(sptr+i)>=’A’&& sptr[i]<=’Z’) *(sptr+i)=*(sptr+i)+32;…

19
May
2017

Send Array to Function Using Pointer

code: #include<stdio.h> void printArray(int *p_array,int n) { int i; printf(“Content of the array: “); for(i=0; i<n; i++)…