Explain what is the difference between the expression '++a' and 'a++'?
No Answer is Posted For this Question
Be the First to Post Answer
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
actually i have 2 years teaching experience as computer faculty but now i am a DBA but when i go for interview many peoples asked me why i left my teaching profession and why i want to come in this field kindly give me the proper answer of this queston
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
Write a program to print ASCII code for a given digit.
how to find the kth smallest element in the given list of array elemnts.
write a program to print %d ?
What is structure pointer in c?
What is else if ladder?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What is a pointer variable in c language?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
write a program to copy a string without using a string?