What is substring in c?
How does the C program handle segmentation faults?
Explain how to reverse singly link list.
what is an inline fuction??
where do we use structure pointer?
Write a code to generate a series where the next element is the sum of last k terms.
write a program to copy a string without using a string?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
write a program whose output will be- 1 12 123 1234
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is the scope of global variable in c?
To what value do nonglobal variables default? 1) auto 2) register 3) static
What are volatile variables in c?