Explain how do you search data in a data file using random access method?
No Answer is Posted For this Question
Be the First to Post Answer
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What ios diff. Between %e & %f?
What is sizeof int in c?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Why can’t we compare structures?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Differentiate abs() function from fabs() function.
How was c created?
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
Describe dynamic data structure in c programming language?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.