Why do some versions of toupper act strangely if given an upper-case letter?
No Answer is Posted For this Question
Be the First to Post Answer
plz answer..... a program that reads non-negative integer and computes and prints its factorial
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
Explain what is the benefit of using #define to declare a constant?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
How can you tell whether a program was compiled using c versus c++?
How can we open a file in Binary mode and Text mode?what is the difference?
What does == mean in texting?
Are the expressions * ptr ++ and ++ * ptr same?
write a C code To reverse a linked list
How can I call a function, given its name as a string?
How does selection sort work in c?