N O S I E R
+ A S T R A L
----------------
7 2 5 6 1 3
Answers were Sorted based on User's Feedback
Answer / chakkaravarthi ss
0 3 8 4 5 1
6 8 7 1 6 2
-----------
7 2 5 6 1 3
0-N, 1-R, 2-L, 3-O, 4-I, 5-E, 6-A, 7-T and 8-S
Is This Answer Correct ? | 5 Yes | 6 No |
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
What are the rules for identifiers in c?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Can a pointer be volatile in c?
Tell us something about keyword 'auto'.
Explain what are the standard predefined macros?
what is a pointer
4 Answers Bank Of America, TCS,
what is the coding of display the factorial of a number using array and function?
What is the purpose of main( ) in c language?
What is a header file?
What is array of structure in c?