What is the difference between specifying a constant variable
like with constant keyword and #define it? i.e what is the
difference between CONSTANT FLOAT A=1.25 and #define A 1.25
No Answer is Posted For this Question
Be the First to Post Answer
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Write a program to print "hello world" without using a semicolon?
what is the difference between getch() and getchar()?
Explain indirection?
How Many Header Files in c?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
How do you determine if a string is a palindrome?
What is a program flowchart and how does it help in writing a program?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
How can I remove the leading spaces from a string?
What is getch() function?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }