In header files whether functions are declared or defined?
No....In C we cannot declare functions in header files
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Explain what are its uses in c programming?
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
how to add two numbers without using arithmetic operators?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
Describe wild pointers in c?
What is const volatile variable in c?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
What is a good data structure to use for storing lines of text?
What does the error 'Null Pointer Assignment' mean and what causes this error?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.