What is a program flowchart and explain how does it help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
Why is the code below functioning. According to me it MUST NOT.
What is restrict keyword in c?
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; }
What is volatile variable in c with example?
What is string in c language?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
How do you define CONSTANT in C?
How does free() know explain how much memory to release?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
Output for following program using for loop only * * * * * * * * * * * * * * *
What is the difference b/w Structure & Class?
Write program to remove duplicate in an array?