Explain indirection?
What is the acronym for ansi?
What is a dynamic array in c?
How do you override a defined macro?
What are the features of c language?
I have seen function declarations that look like this
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What are structural members?
Why c is called a mid level programming language?
What is a stream water?
What do header files do?
What is abstract data structure in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What does a function declared as pascal do differently?