Wt are the Buses in C Language
No Answer is Posted For this Question
Be the First to Post Answer
how to find the binary of a number?
What is c language in simple words?
Can a program have two main functions?
Explain the difference between fopen() and freopen().
Is c easy to learn?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
What is C language ?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What functions are used for dynamic memory allocation in c language?
write a “Hello World” program in “c” without using a semicolon?