C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} Error 65 c A Error 65 c A 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} 0 10..10 10..50 Error 0 10..10 10..50 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 0713 1289 Syntax error 0289 713 0713 1289 Syntax error 0289 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? scanf() gets() printf() None of these puts() scanf() gets() printf() None of these puts() ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope No scope at all Local scope File scope Block scope Function scope No scope at all Local scope File scope Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 64 None of These 16 4 64 None of These 16 4 ANSWER DOWNLOAD EXAMIANS APP