Why is c fast?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of #pragma directives in C?
What does struct node * mean?
What is call by reference in functions?
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; }
How we can insert comments in a c program?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
how to compare two strings without using strcmp() function??
what is the syallabus of computer science students in group- 1?
without using arithmatic operator convert an intger variable x into x+1
How can you convert integers to binary or hexadecimal?
What is character constants?
what is a function method?give example?