Explain do array subscripts always start with zero?
No Answer is Posted For this Question
Be the First to Post Answer
Can a variable be both static and volatile in c?
What are pointers? Why are they used?
Can we add pointers together?
What are formal parameters?
What is a const pointer?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
What is the scope of static variable in c?
Is there a built-in function in C that can be used for sorting data?
what is the maximum limit of row and column of a matrix in c programming. in linux .
What is a pointer on a pointer in c programming language?