Are there any problems with performing mathematical operations on different variable types?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What does c mean in standard form?
Disadvantages of C language.
write a program to remove duplicate from an ordered char array? in c
Which is an example of a structural homology?
Can you please explain the difference between malloc() and calloc() function?
difference between ordinary variable and pointer in C?
Explain #pragma in C.
Explain what is the advantage of a random access file?
What are the types of functions in c?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.