What is the right type to use for boolean values in c?
No Answer is Posted For this Question
Be the First to Post Answer
how many times of error occur in C
How is = symbol different from == symbol in c programming?
What is difference between class and structure?
what is a NULL pointer?
C,c++, Java is all are structural oriented or procedure oriented language..?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What is file in c language?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is define directive?
What is the difference between the = symbol and == symbol?
How to print India by nested loop? I IN IND INDI INDIA
write a program to print sum of each row of a 2D array.