C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} 5 Error 6 9 None of these 5 Error 6 9 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} Syntax error 100 Runtime error g##g2 10012 Syntax error 100 Runtime error g##g2 10012 ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 24 36 40 30 32 24 36 40 30 32 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. Bjarne Stroustrup James Dennis Ritchie Gosling F. Codd Dr. Bjarne Stroustrup James Dennis Ritchie Gosling F. Codd ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} well done examians complier error examians None of these well done examians complier error examians None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? scanf() printf() puts() gets() None of these scanf() printf() puts() gets() None of these ANSWER DOWNLOAD EXAMIANS APP