C Programming Functions have .......... Block scope No scope at all Local scope File scope Function scope Block scope No scope at all Local scope File scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} 1 10 Garbage Value None of These 1 10 Garbage Value None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 0 Compiler Error 7 6 5 0 Compiler Error 7 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50} 10..10 0 Error 10..50 10..10 0 Error 10..50 ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ int short float char long int short float char long ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Editing During Preprocessing During Execution None of these During linking During Editing During Preprocessing During Execution None of these During linking ANSWER DOWNLOAD EXAMIANS APP