In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are multidimensional arrays?
What is a lookup table in c?
how to introdu5ce my self in serco
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
Can you think of a way when a program crashed before reaching main? If yes how?
What is the use of putchar function?
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
What 'lex' does?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Why double pointer is used in c?
What is 1f in c?
What is the scope of local variable in c?