What are the different types of linkage exist 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; }
can i know the source code for reversing a linked list with out using a temporary variable?
how can I convert a string to a number?
what is difference between strcmp & palindrome?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What are the different properties of variable number of arguments?
What are the features of c language?
write a program in c language to print your bio-data on the screen by using functions.
who did come first hen or agg
If input is 123 then how to print 100 and 20 and 3 seperately?
Explain what is #line used for?