C Programming Which of following is not a valid name for a C variable? Examians Exam veda Exam_veda None of these Both A and B Examians Exam veda Exam_veda None of these Both A and B ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} None of These will print Hello World Can't Say Compiler Error None of These will print Hello World Can't Say Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 7 6 5 None of These 7 6 5 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } None of These 64 4 16 None of These 64 4 16 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language None of these System programming language General purpose language Data processing language None of these System programming language General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? The operand can come before or after the operator It associates from the right All of these It is a unary operator It cannot be applied to an expression The operand can come before or after the operator It associates from the right All of these It is a unary operator It cannot be applied to an expression ANSWER DOWNLOAD EXAMIANS APP