C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 0 1 0 0 1 0 None of these 1 1 0 1 0 0 1 0 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Logical operators Arithmetic operators Relational operators Equality operators Logical operators Arithmetic operators Relational operators Equality operators ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 444 333 000 433 Garbage Value 444 333 000 433 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Acts before compilation Takes care of macros All of these Takes care of include files Takes care of conditional compilation Acts before compilation Takes care of macros All of these Takes care of include files Takes care of conditional compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strstr() None of these laststr() strnstr() strrchr() strstr() None of these laststr() strnstr() strrchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50} Error 10..50 0 10..10 Error 10..50 0 10..10 ANSWER DOWNLOAD EXAMIANS APP