Explain what does the function toupper() do?
No Answer is Posted For this Question
Be the First to Post Answer
What are qualifiers?
What's the difference between a linked list and an array?
Explain what is a static function?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
what is op? for(c=0;c=1000;c++) printf("%c",c);
main() { printf(5+"Vidyarthi Computers"); }
can a union be self-referenced?
Is r written in c?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
Explain the process of converting a Tree into a Binary Tree.
By using C language input a date into it and if it is right?
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above