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 7360what 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 is fflush() function?
What is scanf () in c?
What is void pointers in c?
Explain what are its uses in c programming?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Explain what is meant by 'bit masking'?
What are different types of operators?
What is s or c?
How do you view the path?
Why do we need a structure?
Explain the Difference between the New and Malloc keyword.
How can you be sure that a program follows the ANSI C standard?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Can a pointer point to null?