An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language
a) string
b) data structure
c) pointers
d) array
No Answer is Posted For this Question
Be the First to Post Answer
How to throw some light on the b tree?
How do you use a pointer to a function?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
what is a void pointer?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
Explain About fork()?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What are data structures in c and how to use them?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
what is the maximum no. of bytes calloc can allocate
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }