C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} Error -2 1 2 Error -2 1 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Bjarne Stroustrup James Dr. Gosling Dennis Ritchie F. Codd Bjarne Stroustrup James Dr. Gosling Dennis Ritchie F. Codd ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double int float real char double int float real char ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program?#include#define int char void main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} Compiler Error None of These sizeof(i)=1 sizeof(i)=2 Compiler Error None of These sizeof(i)=1 sizeof(i)=2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? printf() None of these scanf() gets() puts() printf() None of these scanf() gets() puts() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 6 10 None of these 0 1 6 10 None of these 0 1 ANSWER DOWNLOAD EXAMIANS APP