C Programming Which one of the following is not a valid identifier? _examians exam_veda 1examians examians1 _examians exam_veda 1examians examians1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope File scope Local scope Function scope No scope at all Block scope File scope Local scope Function scope No scope at all ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Random order Iterative order Last In First Out order Parallel order First In First Out order Random order Iterative order Last In First Out order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 2 0.5 0.25 1 9 2 0.5 0.25 1 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} None of These 13 12 11 None of These 13 12 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 6 7 12 7 6 6 11 6 5 6 6 7 12 7 6 6 11 6 5 6 ANSWER DOWNLOAD EXAMIANS APP