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 the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
Explain what is the stack?
What is variable initialization and why is it important?
Why is main function so important?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
What is the translation phases used in c language?
How does the C program handle segmentation faults?
write a program to display all prime numbers
how write a addtion of two single dimensional array using of pointer in c language?
why we are using float in C
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?