Write a C program to perform some of the operation which can be performed using Single linked list
1 8074How 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 3771what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
4 7362what 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 3723int 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 8188
What are c header files?
Explain what math functions are available for integers? For floating point?
Why dont c comments nest?
What is define directive?
What is the difference between new and malloc functions?
Can we compile a program without main() function?
Is c weakly typed?
What are header files and what are its uses in C programming?
What are the different file extensions involved when programming in C?
Can you pass an entire structure to functions?
Can include files be nested?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What are the different data types in C?
What will the preprocessor do for a program?
How can I implement a delay, or time a users response, with sub-second resolution?