PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER
FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE
NAMES AS COMMAND LINE
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of 'register' keyword in c language?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
what is an array
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
How can I read and write comma-delimited text?
How does free() know how many bytes to free?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
What is scope and lifetime of a variable in c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
How to set a variable in the environment list?