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
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is c programing language?
Why we use stdio h in c?
What does %2f mean in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is double pointer?
Explain the difference between the local variable and global variable in c?
What is indirect recursion? give an example?
main() {int a=200*200/100; printf("%d",a); }
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What is typedef example?