Are local variables initialized to zero by default in c?
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
Why clrscr is used in c?
The operation of a stair case switch best explains the a) or operation b) and operation c)exclusive nor operation d)exclusive or operation Which of the following is/are syntactically correct? a) for(); b) for(;); c) for(,); d) for(;;);
1 Answers HCL, Public Service Commission,
what is the difference between postfix and prefix unary increment operators?
What is the function of multilevel pointer in c?
write a program fibonacci series and palindrome program in c
0 Answers Aditi Placement Service,
What is meant by global static? why we have to use static variable instead of Global variable
What are the advantages and disadvantages of pointers?
What is the difference between i++ and i+1 ?(in terms of memory)
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
How to access or modify the const variable in c ?
16 Answers HCL, HP,
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}