C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 54544 55445 54554 45545 54544 55445 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 24 32 36 40 30 24 32 36 40 30 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++);} 12 7 6 7 5 6 11 6 6 6 12 7 6 7 5 6 11 6 6 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Arithmetic operators Logical operators Relational operators Equality operators Arithmetic operators Logical operators Relational operators Equality operators ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as None of these Data processing language System programming language General purpose language None of these Data processing language System programming language General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} None of these 65486, 65487 65486, 65486 65486, 65490 65486, 65488 None of these 65486, 65487 65486, 65486 65486, 65490 65486, 65488 ANSWER DOWNLOAD EXAMIANS APP