C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 3 0 2 1 3 0 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Editing During Execution During Preprocessing During linking None of these During Editing During Execution During Preprocessing During linking None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? None of these Both A and B Examians Exam veda Exam_veda None of these Both A and B Examians Exam veda Exam_veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: *float ptr; float ptr; None of these float *ptr; *float ptr; float ptr; None of these float *ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} 6 Error 5 9 None of these 6 Error 5 9 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 6 7 5 None of These 6 7 5 None of These ANSWER DOWNLOAD EXAMIANS APP