where does malloc() function get the memory?
Place the #include statement must be written in the program?
Write a program using bitwise operators to invert even bits of a given number.
What is the explanation for prototype function in c?
Explain how do you print an address?
how to find greatet of 10 numbers without using array?
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
Where local variables are stored in c?
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
writw a program to insert an element in the begning of a doubly linked list
Write code for atoi(x) where x is hexadecimal string.
. Explain the differences between fork() and exec() in C
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}