the portion of a computer program within which the definition of the variable remains unchanged
a) mode
b) module
c) scope
d) none
No Answer is Posted For this Question
Be the First to Post Answer
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
What is infinite loop?
What is #line?
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
write a program to display the array elements in reverse order in c language
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
How can I pad a string to a known length?
How was c created?
Give me the code of in-order recursive and non-recursive.
Why doesn't C have nested functions?