C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 8 7 6 5 9 8 7 6 5 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language Data processing language None of these System programming language General purpose language Data processing language None of these System programming language ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} None of These ij!gsjfoet hi friends hj grjeodt None of These ij!gsjfoet hi friends hj grjeodt ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static char *s[] = {"black", "white", "yellow", "violet"}; char **ptr[] = {s+3, s+2, s+1, s}, ***p; p = ptr; ++p; printf("%s",*--*++p + 3); } et te ow ck et te ow ck ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Gosling F. Codd Dr. James Bjarne Stroustrup Dennis Ritchie Gosling F. Codd Dr. James Bjarne Stroustrup Dennis Ritchie ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Conditional operator Division operator Assignment operator Unary-operator Comma operator Conditional operator Division operator Assignment operator Unary-operator Comma operator ANSWER DOWNLOAD EXAMIANS APP