C Programming C programs are converted into machine language with the help of An operating system A compiler None of these. An Editor An operating system A compiler None of these. An Editor ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} None of These Forget it Ok here Error None of These Forget it Ok here Error ANSWER DOWNLOAD EXAMIANS APP
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); 7 8 6 5 9 7 8 6 5 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Dr. Bjarne Stroustrup Dennis Ritchie Gosling James F. Codd Dr. Bjarne Stroustrup Dennis Ritchie Gosling James ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include void main(){ char *p = NULL; char *q = 0; if(p) printf(" p "); else printf("nullp"); if(q) printf("q"); else printf(" nullq");} p q nullp nullq x nullq where x can be p or nullp depending on the value of NULL Depends on the compiler p q nullp nullq x nullq where x can be p or nullp depending on the value of NULL Depends on the compiler ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 3 1 0 Garbage Value 2 3 1 0 Garbage Value ANSWER DOWNLOAD EXAMIANS APP