write a c program to store and print name,address,roll.no of
a student using structures?
Answer Posted / fasfasdfdsaf
http://www.cprogrammingexpert.com/C/Tutorial/fundamentals/datatypes/data_types.aspx
| Is This Answer Correct ? | 8 Yes | 18 No |
Post New Answer View All Answers
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Why we use conio h in c?
What is 2c dna?
Explain how can I read and write comma-delimited text?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is file in c language?
What is type qualifiers?
Explain how can I remove the trailing spaces from a string?
What is a scope resolution operator in c?
What are the different types of linkage exist in c?
Explain function?
What is const and volatile in c?
How can you allocate arrays or structures bigger than 64K?