What is the size of array float a(10)?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is a stream in c programming?
How do you sort filenames in a directory?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
Explain can static variables be declared in a header file?
Are pointers integers in c?
What will be your course of action for a push operation?
When the macros gets expanded?
Where static variables are stored in c?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
What is the difference between char array and char pointer?
What is the scope of an external variable in c?