C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 6 5 Garbage Value Compiler Error 6 5 Garbage Value Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A number A special symbol other than underscore Both of the above An alphabet A number A special symbol other than underscore Both of the above An alphabet ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 0 0 0 garbage values Error 1 1 1 0 0 0 garbage values Error 1 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50} Error 0 10..50 10..10 Error 0 10..50 10..10 ANSWER DOWNLOAD EXAMIANS APP
C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? 12 It will not compile because not enough initializers are given 7 6 24 12 It will not compile because not enough initializers are given 7 6 24 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? 1examians exam_veda examians1 _examians 1examians exam_veda examians1 _examians ANSWER DOWNLOAD EXAMIANS APP