Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
No Answer is Posted For this Question
Be the First to Post Answer
What is c programming structure?
When a c file is executed there are many files that are automatically opened what are they files?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
What does void main () mean?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What is indirection in c?
What is floating point constants?
Is sizeof a keyword in c?
What does %d do?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
Explain what is wrong with this program statement? Void = 10;