Write a C program to perform some of the operation which can be performed using Single linked list
1 8073How 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 3768what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
4 7354what 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 3722int 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 8181
In which header file is the null macro defined?
Explain what are run-time errors?
What are pointers in C? Give an example where to illustrate their significance.
What is pass by reference in functions?
What does the c in ctime mean?
What is the total generic pointer type?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Difference between pass by reference and pass by value?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Sir i need notes for structure,functions,pointers in c language can you help me please
What is the right type to use for boolean values in c? Is there a standard type?
What is the scope of local variable in c?
Difference between constant pointer and pointer to a constant.
What is meant by operator precedence?