Explain the use of function toupper() with and example code?
No Answer is Posted For this Question
Be the First to Post Answer
How to set file pointer to beginning c?
What is scope of variable in c?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is pointers in c with example?
why integer range between -327680to+32767
what are the advantages & disadvantages of unions?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
in linking some of os executables are linking name some of them
What is the best way to store flag values in a program?
How can I automatically locate a programs configuration files in the same directory as the executable?
What is the size of a union variable?
What are macros in C?