Do you have any idea how to compare array with pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I get back to the interactive keyboard if stdin is redirected?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
What is the difference between constant pointer and constant variable?
Function calling procedures? and their differences? Why should one go for Call by Reference?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What is the difference between single charater constant and string constant?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
void main() { int i=5; printf("%d",i++ + ++i); }
How will you write a code for accessing the length of an array without assigning it to another variable?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
write a program in c language to print your bio-data on the screen by using functions.