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 Which of the following function is more appropriate for reading in a multi-word string? puts() printf() gets() None of these scanf() puts() printf() gets() None of these scanf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 11 15 12 10 11 15 12 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as None of these Data processing language General purpose language System programming language None of these Data processing language General purpose language System programming language ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 15 11 12 None of these 10 15 11 12 None of these 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 1 None of these 10 14 0 1 None of these 10 14 0 ANSWER DOWNLOAD EXAMIANS APP