C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? defg cdefg fg bcdefg efg defg cdefg fg bcdefg efg ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions Local variables Members of a structure Both of the above R-values Arithmetic expressions Local variables Members of a structure Both of the above R-values ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct statement.I. The scope of a macro definition need not be the entire program.II. The scope of a macro definition extends from the point of definition to the end of the file.III. New line is a macro definition delimiter.IV. A macro definition may go beyond a line. II, III and IV I and II II and III I, II, III and IV I, II and III II, III and IV I and II II and III I, II, III and IV I, II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 None of these. 9 10 11 None of these. 9 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Equality operators Arithmetic operators Logical operators Relational operators Equality operators Arithmetic operators Logical operators Relational operators ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of A compiler None of these. An operating system An Editor A compiler None of these. An operating system An Editor ANSWER DOWNLOAD EXAMIANS APP