Compare array data type to pointer data type
No Answer is Posted For this Question
Be the First to Post Answer
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is void pointers in c?
difference between c and c++
What are the different types of data structures in c?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
given post order,in order construct the corresponding binary tree
What is the c language function prototype?
How to set a variable in the environment list?
write a program that finds the factorial of a number using recursion?
What is volatile variable in c?
What are the types of operators in c?
What are the average number of comparisons required to sort 3 elements?