int main()
{
Int n=20,i;
For(i=0;i<=n;i--)
{
Printf(“-“);
Return 0;
No Answer is Posted For this Question
Be the First to Post Answer
Can you mix old-style and new-style function syntax?
Write code for finding depth of tree
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
difference between memcpy and strcpy
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
List some applications of c programming language?
What is hungarian notation? Is it worthwhile?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
Are pointers integer?
What are the 4 types of unions?