C Programming Who is father of C Language? Gosling James Dennis Ritchie Bjarne Stroustrup F. Codd Dr. Gosling James Dennis Ritchie Bjarne Stroustrup F. Codd Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Equality operators Relational operators Logical operators Arithmetic operators Equality operators Relational operators Logical operators Arithmetic operators ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 2 2 1 2 2 1 1 1 2 2 1 2 2 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? power(x, 2) pow(2, x) power(2, x) sqr(x) pow(x, 2) power(x, 2) pow(2, x) power(2, x) sqr(x) pow(x, 2) ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} None of these 0 1 2 2 0 1 2 3 1 1 2 2 1 1 2 3 None of these 0 1 2 2 0 1 2 3 1 1 2 2 1 1 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Need not contain any function. Needs input data. Must contain at least one function. None of these Need not contain any function. Needs input data. Must contain at least one function. None of these ANSWER DOWNLOAD EXAMIANS APP