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
code for bubble sort?
why we wont use '&' sing in aceesing the string using scanf
What is the advantage of c?
What is the use of sizeof?
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
Why cd or dvd are round why not square.
List some of the dynamic data structures in C?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Please list all the unary and binary operators in C.
What is the difference between far and near in c?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What should malloc(0) do?