Explain what is the benefit of using enum to declare a constant?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between class and unio?
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,
how to write hello word without using semicolon at the end?
What is the purpose of Scanf Print, getchar, putchar, function?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
An array name contains base address of the array. Can we change the base address of the array?
When is a “switch” statement preferable over an “if” statement?
How many keywords are there in c?
What are pragmas and what are they good for?
How do I get a null pointer in my programs?
What does main () mean in c?
Will Macros support multiple arguments ?