Discuss the function of conditional operator, size of operator and comma operator with examples.
No Answer is Posted For this Question
Be the First to Post Answer
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
Can a binary search tree be used as an index? If yes, how? Explain
What is putchar() function?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What are the usage of pointer in c?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
what is the little endian and big endian?
Are pointers integer?
write a program that print itself even if the source file is deleted?
List some of the dynamic data structures in C?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }