Write a C program to perform some of the operation which can be performed using Single linked list
1 7983How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
1 3680what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
4 7178what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
1 3641int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
3 8022
What does dm mean sexually?
What is the difference between int main and void main in c?
What is the correct declaration of main?
Explain the bubble sort algorithm.
What are nested functions in c?
Is there anything like an ifdef for typedefs?
What does typedef struct mean?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
about c language
How can I access an I o board directly?
What are compound statements?
What is unary operator?
Which of these functions is safer to use : fgets(), gets()? Why?
What is the difference between formatted&unformatted i/o functions?
In C programming, what command or code can be used to determine if a number of odd or even?