Explain what is a 'locale'?
No Answer is Posted For this Question
Be the First to Post Answer
Is using exit() the same as using return?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
What are the different pointer models in c?
Why pointers are used in c?
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
Who is the founder of c language?
what is meant by c
How can you find the day of the week given the date?
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>
What are the two types of structure?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y