R
Q. What is the output of C Program with strings?
int main() { char str[2]; int i=0; scanf("%s", str); while(str[i] != '\0') { printf("%c", str[i]); i++; } return 0; } //Input: KLMN
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What is an example of iteration in C?
Q. In which case union is better than structure?
Q. What will be the output of this code?
Q. What is the limit for number of functions in a C Program.?
Q. By default, any real number in 'C' is treated as
Q. What will be the result of the following code snippet?
Q. Which of the following is not a valid variable name declaration?
Discusssion
Login to discuss.