What is C language ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the role of this pointer?
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
what is used instead of pointers in java than c?
What is scope of variable in c?
Difference between pass by reference and pass by value?
what are enumerations in C
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
What are the uses of pre-processor directives?
Differentiate call by value and call by reference?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
What do you mean by dynamic memory allocation in c? What functions are used?
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