What is const keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of extern in c?
Explain the use of 'auto' keyword in c programming?
How can you invoke another program from within a C program?
#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....?
how to create c progarm without void main()?
What is array in c with example?
What do you mean by a local block?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
How many identifiers are there in c?
what are the advantages of a macro over a function?
What is a macro, and explain how do you use it?
What is the difference between variable declaration and variable definition in c?