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 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 char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? bcdefg fg defg efg cdefg bcdefg fg defg efg cdefg ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} %d\n None of These 300 Error %d\n None of These 300 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all Local scope Block scope File scope Function scope No scope at all Local scope Block scope File scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? float double char real int float double char real int ANSWER DOWNLOAD EXAMIANS APP