a) Identify the following declarations.
Ex.
int i
(integer variable) float a[l0](array of 10 real nos)
int (*f())()
void *f
int (*f()) []
void *f
int f[] [] []
char *(*f) ()
int (*f[]) []
float(*f) [] []
float **f
int ******f
How is pointer initialized in c?
What do you understand by friend-functions? How are they used?
Why can’t constant values be used to define an array’s initial size?
What is substring in c?
What are the basic data types associated with c?
what is link list?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
Disadvantages of C language.
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
Dont ansi function prototypes render lint obsolete?
What is an identifier?