C Programming A C variable cannot start with A special symbol other than underscore An alphabet Both of the above A number A special symbol other than underscore An alphabet Both of the above A number ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam Veda Veda Exam\0Veda None of these Exam Exam Veda Veda Exam\0Veda None of these Exam ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); 0123456789 10 0 Infinite loop Syntax error 0123456789 10 0 Infinite loop Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} hello garbage value None of These Error hello 5 hello garbage value None of These Error hello 5 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++);} 7 6 Compiler Error 5 0 7 6 Compiler Error 5 0 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 10..50 Error 0 10..10 10..50 Error 0 ANSWER DOWNLOAD EXAMIANS APP