Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
No Answer is Posted For this Question
Be the First to Post Answer
what is call by value and call by reference
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
can we declare a variable in different scopes with different data types? answer in detail
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
What are shell structures used for?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
Do array subscripts always start with zero?
How can I read/write structures from/to data files?
Do you know the purpose of 'register' keyword?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above