array of pointer
pointer to array
pointer to pointer
What is console in c language?
write a programme that inputs a number by user and gives its multiplication table.
Give me the code of in-order recursive and non-recursive.
what is a NULL pointer?
How can we open a file in Binary mode and Text mode?what is the difference?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
What are identifiers c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
explain what are pointers?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
How will you write a code for accessing the length of an array without assigning it to another variable?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)