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 7359what 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 8187
hi any body pls give me company name interview conduct "c" language only
All technical questions
Which is best linux os?
what is recursion in C
Write a program to print ASCII code for a given digit.
what is stack , heap ,code segment,and data segment
What is %d used for?
What is the size of a union variable?
How does free() know explain how much memory to release?
write a program fibonacci series and palindrome program in c
Why is c used in embedded systems?
What does return 1 means in c?
Explain how do you determine whether to use a stream function or a low-level function?
How do we open a binary file in Read/Write mode in C?
What is the use of pointers in C?