Compare and contrast compilers from interpreters.
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
What does calloc stand for?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
How can type-insensitive macros be created?
Write a C program to convert an integer into a binary string?
What is || operator and how does it function in a program?
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
What is the advantage of c?
Convert the following expression to postfix and prefix (A+B) * (D-C)
how can I convert a string to a number?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
What functions are used for dynamic memory allocation in c language?