What is the difference between ++a and a++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the features of c languages?
What functions are used in dynamic memory allocation in c?
Explain what a Binary Search Tree is.
Can we compile a program without main() function?
How can I make it pause before closing the program output window?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
why array index always starts from zero??
How do you use a pointer to a function?
Write a pro-gramme to determine whether the number is even or odd?
What is non linear data structure in c?
Eight queens puzzle
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?