C Programming Functions have .......... Block scope Function scope File scope No scope at all Local scope Block scope Function scope File scope No scope at all Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} 0 None of These 2 Garbage Value 0 None of These 2 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? main() printf() getch() system() start() main() printf() getch() system() start() ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ long float short int char long float short int char ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 4 5 8 5 5 2 5 5 2 4 4 2 4 5 8 5 5 2 5 5 2 4 4 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));} None of these 12 15 10 11 None of these 12 15 10 11 ANSWER DOWNLOAD EXAMIANS APP