C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} Error 1 1 1 garbage values 0 0 0 Error 1 1 1 garbage values 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45445 54554 45545 54544 45445 54554 45545 54544 ANSWER DOWNLOAD EXAMIANS APP
C Programming A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as None of these. int *p(char *)[] int (*p) (char *)[] int(*p(char *))[] None of these. int *p(char *)[] int (*p) (char *)[] int(*p(char *))[] ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? None of these % / * + None of these % / * + ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. James Dennis Ritchie Bjarne Stroustrup F. Codd Gosling Dr. James Dennis Ritchie Bjarne Stroustrup F. Codd Gosling ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0289 1289 Syntax error 713 0713 0289 1289 Syntax error 713 0713 ANSWER DOWNLOAD EXAMIANS APP