What is function prototype in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
What is file in c language?
What does dm mean sexually?
What is self-referential structure in c programming?
What is 1f 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; }
12345 1234 123 12 1
In which layer of the network datastructure format change is done
SRUCTURE PROGRAMMING
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
Write down the program to sort the array.
When would you use a pointer to a function?
whats the use of header file in c?