Why can’t constant values be used to define an array’s initial size?
No Answer is Posted For this Question
Be the First to Post Answer
Software Interview Questions
declare afunction pointer to int printf(char *)?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
what is ANSI and ISO
What do you mean by Recursion Function?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
What is the purpose of main() function?
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Difference between MAC vs. IP Addressing
Explain how can I avoid the abort, retry, fail messages?
What is an example of enumeration?