Which built-in library function can be used to match a patter from the string?
No Answer is Posted For this Question
Be the First to Post Answer
How many keywords (reserve words) are in c?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
Write a progarm to find the length of string using switch case?
Does free set pointer to null?
pascal triangle program
What do you mean by a local block?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
Is there a way to compare two structure variables?
What is a good data structure to use for storing lines of text?