What is a dynamic array in c?
No Answer is Posted For this Question
Be the First to Post Answer
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; }
question-how to run a c programme.
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
How can you read a directory in a C program?
What does c value mean?
What is your favorite subject?
1 Answers Ericsson, Invendis, Tech Mahindra,
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
How do you write a program which produces its own source code as its output?
How can I access an I o board directly?
can i know the source code for reversing a linked list with out using a temporary variable?
how to count no of words,characters,lines in a paragraph.
What are dangling pointers? How are dangling pointers different from memory leaks?