Explain how can a program be made to print the name of a source file where an error occurs?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
Differentiate between declaring a variable and defining a variable?
What is strcmp in c?
write a program to count the no of repaeted words in a line?
What is the difference between functions abs() and fabs()?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
I have seen function declarations that look like this
How to get string length of given string in c?
what is constant pointer?