Explain how to reverse singly link list.
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What are the disadvantages of external storage class?
What does sizeof function do?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Why can’t constant values be used to define an array’s initial size?
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
hat is a pointer?
What is extern storage class in c?
what is a function pointer and how all to declare ,define and implement it ???
What does %2f mean in c?