Explain what are header files and explain what are its uses in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Where are local variables stored in c?
What are the different types of control structures?
what are bitwise shift operators?
write a program to create a sparse matrix using dynamic memory allocation.
Explain Doubly Linked Lists?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
What is volatile variable in c with example?
What is the general form of a C program?
Was 2000 a leap year?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?