⟩ Which of the following is not an important principle for evaluating the raw data for decision-making A. selection B. pattern C. everage D. overview E. None of the above
C. everage
C. everage
Explain Array of pointers?
What is two-dimensional array?
What is Array?
Tell me is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Tell me can the size of operator be used to tell the size of an array passed to a function?
What will be output if you will execute following c code? #include<stdio.h> void main(){ long double a; signed char b; int arr[sizeof(!a+b)]; printf("%d",sizeof(arr)) }
Explain can you assign a different address to an array tag?
What will be output if you will execute following c code? #include<stdio.h> #define WWW -1 enum {cat,rat}; void main(){ int Dhoni[]={2,'b',0x3,01001,'x1d','111',rat,WWW}; int i; for(i=0;i<8;i++) printf(" %d",Dhoni[i]);
Tell me do array subscripts always start with zero?
What will be output if you will execute following c code? #include<stdio.h> void main(){ int xxx[10]={5}; printf("%d %d",xxx[1],xxx[9]);