difference between Low, Middle, High Level languages in c ?
No Answer is Posted For this Question
Be the First to Post Answer
What are register variables? What are the advantage of using register variables?
What is call by reference in functions?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
main() { printf("hello%d",print("QUARK test?")); }
What is diffrance between declaration and defination of a variable or function
Difference between malloc() and calloc() function?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
How to convert decimal to binary in C using recursion??
Which of these functions is safer to use : fgets(), gets()? Why?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?