-
Uses of Structures
What are the uses of structures in C?
-
Insert File
How to insert file in C program?
-
Reverse a sentence by entering every word by itself
I need help creating an algorithm in javascript for asking a user to input a sentence, one word at a time in reverse and then at the end the output would be the sentence in its correct form.
-
DES - Data Encryption Standard
Hi.. Can anyone let me know the Data Encryption Standard(DES) code implementation in C language..!!
-
File handling in c++
what is the difference between the two statements:
file.write( reinterpret_cast(&pers), sizeof(pers) );
file1.write( (char*) & pers, sizeof(pers ); -
C program using loop and array
Write a C program using arrays and any loop statements that asks the user to enter the number of students. For each student, enter the number of courses. The user should enter the students ID number and the marks for each course. Compute and display the total and average of the students marks.
Sample Output:
Enter the number of students: 2
Enter Student ID no. 1: 082367 -
Want C program for this please.
I need the code for this... plz help me out...
Search c keyword;
1) The program will ask user to enter a file name (a C source file )
2) software will open file and search C language keywords in file
3) it will print keywords and their count after traversing through whole file in following format;
IF 1o
WHILE 7
INT 4
FLOAT 5
The program... -
C Compiler Dependency
Some Questions Answers are compiler dependent..so correct it, as in my test i observed the sizeof int is 2 bytes which was in 16bit compiler like turbo. Now world has moved to 32 bits, even 64 bits will coming near soon, so change ur test ans....
-
Cprintf vs printf
cprintf is defined to send formatted output to the text window on the screen. And printf directs its output to the stdout. What is the difference between stdout and a text window then? Does the screen serve differently while using cprintf and printf? Please explain
-
Stop Watch
I want code for stop watch in c c++ & java.
-
-
Program
Write a program that asks a user to type in their name, sex, age, roll number and store them!
The program should then print the information the user entered
(Hints: use character arrays for name, sex) -
C program to compare two text files
Hii All,
i am a begginer at c programming in the first semetser of study, and i am trying to doing my project what is:
Diff — The program should compare two text files and list the differences, i.e. lines and columns of the beginning and the end of a given difference.
i dont know how to start or what to do with this, please anyhelp :)
thank you -
-
Write a simple program to organize student marks ?
The ID (numeric part) and marks of each student can be entered. Once all the data is entered (with no sorting), the list of IDs and marks can be output in forward or reverse order (i.e. according to array index or the order you entered the data). Set a maximum number of 10 students to be entered including your own ID. Use only integer array(s). Show the output of the array in both orders.
-
-
What is the difference between loop and function recursion?
Loop doesnot allocate memory , read more : http://forum.litindia.in/forums/topic/what-is-the-difference-between-loop-and-function-recursion/
-
Farm Grid of Cells Arrangement - Asked at Practo
On a farm divided into a grid of cells, every cell either has grass on it or is empty. If two adjacent cells have grass, they will belong to a common field. The common field extends in all directions to all adjacent cells with grass. So, if cell A is adjacent to cell B and cell B is adjacent to cell C, and all three have grass, then they all lie in the same field. If a cell with grass has no adjacent...
-
Find a Solution in C, C++, C#
Given a list of integers (more than 1 million) find out how many ways there of selecting two of therm that add up to 0.
-
C based on Data Structure
Implement grep command in C using binary tree
C Interview Questions
Ans