while initialization of array why we use a[][2]
why not a[2][]...?
No Answer is Posted For this Question
Be the First to Post Answer
What is a newline escape sequence?
What is the significance of c program algorithms?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
simple program for virtual function?
Given an unsigned integer, find if the number is power of 2?
How do I determine whether a character is numeric, alphabetic, and so on?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
c program to subtract between two numbers without using '-' sign and subtract function.
What is the benefit of using #define to declare a constant?
Explain how can a program be made to print the name of a source file where an error occurs?
What does. int *x[](); means ?