write a C program: To search a file any word which starts
with ?a?. If the word following this ?a? starts with a
vowel.Then replace this ?a? with ?a? with ?an?. redirect
with the output onto an output file.The source file and
destination file are specified by the user int the command line.
No Answer is Posted For this Question
Be the First to Post Answer
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
How is a macro different from a function?
what is uses of .net
Why is void main used?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
What is 1d array in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What is function definition in c?
How to throw some light on the b tree?
wats SIZE_T meant for?
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error