What is the difference between #include <header file> and #include “header file”?
No Answer is Posted For this Question
Be the First to Post Answer
What are compound statements?
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
how is the examination pattern?
Explain what are global variables and explain how do you declare them?
difference between loading and linking
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
What are the uses of pre-processor directives?
Difference Between embedded software and soft ware?
Why do we use c for the speed of light?
without using arithmatic operator solve which number is greater??????????
Do you know the purpose of 'register' keyword?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above