What is multidimensional arrays
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
What is the use of sizeof () in c?
How to write c functions that modify head pointer of a linked list?
The statement, int(*x[]) () what does in indicate?
Is the following code legal? struct a { int x; struct a b; }
What is the use of getch ()?
how to introdu5ce my self in serco
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
How to add two numbers without using semicolon n c????
What are local static variables?
write a program to display the frequency of each element in a given array in c language
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} .