What is variable and explain rules to declare variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
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(); }
Explain what is a const pointer?
find largest element in array w/o using sorting techniques.
What does c value mean?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
What are the preprocessor categories?
Are the variables argc and argv are always local to main?
Give me the code of in-order recursive and non-recursive.
Compare interpreters and compilers.
What is a nested formula?
What are header files? What are their uses?