C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 053 65 53 65 65 65 Syntax error 065 65 053 65 53 65 65 65 Syntax error 065 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During linking During Preprocessing None of these During Editing During Execution During linking During Preprocessing None of these During Editing During Execution ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Combining two strings. Extracting a substring out of a string. Partitioning the string into two strings. Comparing the two strings to define the larger one. Merging two strings. Combining two strings. Extracting a substring out of a string. Partitioning the string into two strings. Comparing the two strings to define the larger one. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam_veda None of these Examians Exam veda Both A and B Exam_veda None of these Examians Exam veda Both A and B ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 6 5 10 11 9 6 5 10 11 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of An Editor A compiler None of these. An operating system An Editor A compiler None of these. An operating system ANSWER DOWNLOAD EXAMIANS APP