Explain what is the advantage of a random access file?
What is a struct c#?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is keyword in c?
int i=10; printf("%d %d %d", i, i=20, i);
Which are low level languages?
How do you write a program which produces its own source code as output?
Can you assign a different address to an array tag?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
How can I read in an object file and jump to locations in it?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Why is this loop always executing once?
What are the types of assignment statements?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
write a progrmm in c language take user interface generate table using for loop?