-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
What is the difference between #include <file> and #include “file”?
When writing your C program, you can include files in two ways. The first way is to surround the file you want to include with the angled brackets < and >. This method of inclusion tells the preprocessor to look for the file in the predefined default location. This predefined default location is often an INCLUDE environment variable that denotes the path to your include files. For instance,...
-
-
Difference b/w a[i] and i[a]
Is there any relation between a[i] and i[a] while using arrays..can anyone help me with this....
-
Diffence arrays and pointers?
Ø Pointers are used to manipulate data using the address. Pointers use * operator to access the data pointed to by themØ Arrays use subscripted variables to access and manipulate data.Array variables can be equivalently written using pointer expression.
-
C Interview Questions
Ans