What is substring in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How does the C program handle segmentation faults?

2 Answers  


Explain how to reverse singly link list.

0 Answers  


what is an inline fuction??

2 Answers  


where do we use structure pointer?

1 Answers  


Write a code to generate a series where the next element is the sum of last k terms.

0 Answers   Aspiring Minds,






write a program to copy a string without using a string?

2 Answers  


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

0 Answers   MNC,


write a program whose output will be- 1 12 123 1234

10 Answers  


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

15 Answers   Accenture, TCS,


What is the scope of global variable in c?

0 Answers  


To what value do nonglobal variables default? 1) auto 2) register 3) static

4 Answers  


What are volatile variables in c?

0 Answers  


Categories