Write a C program to perform some of the operation which can be performed using Single linked list
1 7772How 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 3436what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
4 6740what 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 3406int 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 7685
What is the deal on sprintf_s return value?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Is there a way to switch on strings?
What is the use of volatile?
Why do we need a structure?
What is the function of this pointer?
What is structure in c explain with example?
Explain what is the difference between text files and binary files?
Write the syntax and purpose of a switch statement in C.
Multiply an Integer Number by 2 Without Using Multiplication Operator
How can I invoke another program or command and trap its output?
What is the modulus operator?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What are the uses of null pointers?