Software Interview Questions
Answer / venkamma
better to see preves papers avalabule respected compines
| Is This Answer Correct ? | 1 Yes | 1 No |
What is extern c used for?
How can I find out how much memory is available?
main() { int a; a=++100; printf("%d",a); getch(); }
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
int x=5; printf("%d%d%d",x,x<<2,x>>2);
What are c identifiers?
What is scope and lifetime of a variable in c?
Program to swap the any two elements in an array containing N number of elements?
1 Answers Bosch, Glenwood, Ugam Solutions,
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
When should you not use a type cast?
What is the scope of local variable in c?