Array is an lvalue or not?
No Answer is Posted For this Question
Be the First to Post Answer
Explain continue keyword in c
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Who is the founder of c language?
Write a C program in Fibonacci series.
Explain what is the stack?
Write a program to print factorial of given number without using recursion?
Is c procedural or functional?
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
difference between function & structure
How do I declare a pointer to an array?
Why c is called a mid level programming language?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?