Why do we need a structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Explain how does flowchart help in writing a program?
When is a null pointer used?
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
What is data structure in c language?
What are the primitive data types in c?
Where is volatile variable stored?
What is the difference between memcpy and memmove?
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; }
Are pointers integer?
What is New modifiers?
What is the diffrent between while and do while statement ?