What is this pointer in c plus plus?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
What is calloc()?
How do I convert a string to all upper or lower case?
What is a static variable in c?
what is the difference between c and c++?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
Write any data structure program (stack implementation)
What is a program?
How can I open files mentioned on the command line, and parse option flags?
What does int main () mean?
What are valid operations on pointers?
Please write the area of a RIGHT ANGLED TRIANGLE.