What are integer variable, floating-point variable and character variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is the maximum no. of arguments that can be given in a command line in C.?
What is a ternary operator in c?
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What does %f mean c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
Why c is a procedural language?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What are header files and what are its uses in C programming?
What is string constants?
How the c program is executed?