What are pointers?
Why array is used in c?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
What is echo in c programming?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
What is a pragma?
write a program that explain #define and # undef directive
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
How can I direct output to the printer?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
1,1,5,17,61,217,?,?.
How can you pass an array to a function by value?
Explain why C language is procedural?