what is the different between data structure and data type?
Answer / shalini
data structure is the way of organising and storing the
data, where as data type is the one that defines the
required data for the program requirement.
ex: integer, char,float
| Is This Answer Correct ? | 11 Yes | 1 No |
what are the interview question's in the language c
what is a static function
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What is a structure in c language. how to initialise a structure in c?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
What is the best way to store flag values in a program?
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
Is stack a keyword in c?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Why we not create function inside function.