C Programming
Determine Output:void main(){ int a[] = {10,20,30,40,50}, j, *p; for(j=0; j<5; j++){ printf("%d" ,*a); a++; } p = a; for(j=0; j<5; j++){ printf("%d" ,*p); p++; }}

10 20 30 40 50 Garbage Value
Error
None of These
10 20 30 40 50 10 20 30 40 50

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of macros
All of these
Takes care of conditional compilation
Takes care of include files
Acts before compilation

ANSWER DOWNLOAD EXAMIANS APP