What are the advantages of c preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
Write a program that an operator and two operands read from input operand operator on the implementation and results display.
What is array in C
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
WAP to convert text into its ASCII Code and also write a function to decode the text given?
How to explain the final year project as a fresher please answer with sample project
Do you know the use of 'auto' keyword?
Which is best book for data structures in c?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
Explain what is meant by 'bit masking'?
Do character constants represent numerical values?
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.