What does the format %10.2 mean when included in a printf statement?
No Answer is Posted For this Question
Be the First to Post Answer
what is the need for main function in c?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
Explain how do you use a pointer to a function?
Explain the use of 'auto' keyword
Are pointers integers in c?
What do you mean by a local block?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
How do you write a program which produces its own source code as its output?
print the palindrome numbers in between 0 to n
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
What is dynamic variable in c?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits