Array is an lvalue or not?
No Answer is Posted For this Question
Be the First to Post Answer
How arrays can be passed to a user defined function
Can you please compare array with pointer?
Write a program to check armstrong number in c?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
What is difference between stdio h and conio h?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is calloc malloc realloc in c?
What is the deal on sprintf_s return value?