In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Describe the header file and its usage in c programming?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
What does the format %10.2 mean when included in a printf statement?
Explain logical errors? Compare with syntax errors.
Why flag is used in c?
How many levels of pointers have?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
C,c++, Java is all are structural oriented or procedure oriented language..?
What is the output of printf("%d", printf("Hello"));?