What is far pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
code for reverse alternate words from astring
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is string length in c?
Why preprocessor should come before source code?
Why array starts with index 0
prog for 1st five prime numbers in 2^x - 1
What is p in text message?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
write a C program to print the program itself ?!
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }