Declare the structure which contains the following members and write in C list of all students
who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
No Answer is Posted For this Question
Be the First to Post Answer
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
what is the difference between NULL('\0') and 0?
What is the scope of local variable in c?
what is develop in c language
How important is structure in life?
What is pragma in c?
What is the argument of a function in c?
What do the functions atoi(), itoa() and gcvt() do?
where do we use structure pointer?
What is the difference between fread and fwrite function?
Can you please explain the difference between malloc() and calloc() function?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"