What is scanf_s in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is flag a keyword in c?
What is the difference between mpi and openmp?
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.
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What is difference between arrays and pointers?
Why static is used in c?
what is the differance between pass by reference and pass by value.
what are the facialities provided by you after the selection of the student.
Do pointers need to be initialized?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
why java is called as a purely oops language.
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }