please explain clearly about execution of c program in
detail,in which stage are the printf sacnf getting into
exeecutable code
No Answer is Posted For this Question
Be the First to Post Answer
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
How can a program be made to print the line number where an error occurs?
Explain what does a function declared as pascal do differently?
What is a void * in c?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
What is a constant?
What does typeof return in c?
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
What is the use of keyword VOLATILE in C?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;