C Programming Size of the array need not be specified, when It is a declaratrion Initialization is a part of definition All of these It is a formal parameter It is a declaratrion Initialization is a part of definition All of these It is a formal parameter ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language General purpose language System programming language None of these Data processing language General purpose language System programming language None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 0, 2 2, 2 4, 4 2, 0 2, 4 0, 2 2, 2 4, 4 2, 0 2, 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 54544 54554 45445 45545 54544 54554 45445 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 100 100 5 0 20 100 0 100 5 0 100 100 5 100 100 100 100 5 0 20 100 0 100 5 0 100 100 5 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 65 65 065 65 053 65 Syntax error 53 65 65 65 065 65 053 65 Syntax error 53 65 ANSWER DOWNLOAD EXAMIANS APP