How can I read a binary data file properly?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c to read array check element is present or not?
why integer range between -327680to+32767
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
What are the application of c?
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
Write a program to generate random numbers in c?
What would be an example of a structure analogous to structure c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
How to declare pointer variables?