What is c method?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of external class?
write a program structure to find average of given number
Can a variable be both constant and volatile?
What is the memory allocated by the following definition ? int (*x)();
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
char p="data"; printf(p);
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
Why clrscr is used in c?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Explain what is the difference between functions getch() and getche()?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none