What is the importance of c in your views?
No Answer is Posted For this Question
Be the First to Post Answer
what does keyword ‘extern’ mean in a function declaration?
What is getche() function?
Is array a primitive data type in c?
what is the difference between const volatile int i & volatile const int j;
Explain what is wrong with this program statement? Void = 10;
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What are called c variables?
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?
What is a class?
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
Explain high-order and low-order bytes.
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these