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 are bit fields in c?
Why c is procedure oriented?
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
Explain command-line arguments in C.
Explain how can I pad a string to a known length?
what is the associativity of bitwise OR operator?
How do you construct an increment statement or decrement statement in C?
What is memory leak in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Write a C program to count the number of email on text
What is meant by realloc()?
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.