C Programming A C variable cannot start with Both of the above A special symbol other than underscore An alphabet A number Both of the above A special symbol other than underscore An alphabet A number 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 hj grjeodt hi friends ij!gsjfoet None of These hj grjeodt hi friends ij!gsjfoet ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 1 1 1 garbage values Error 0 0 0 1 1 1 garbage values Error 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value call by value result call by reference None of these. call by value call by value result call by reference None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as None of these System programming language Data processing language General purpose language None of these System programming language Data processing language General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} 3 6 Garbage value Error 3 6 Garbage value Error ANSWER DOWNLOAD EXAMIANS APP