Is it possible to use curly brackets ({}) to enclose single line code in c program?
No Answer is Posted For this Question
Be the First to Post Answer
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
What is bin sh c?
What is the best style for code layout in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
how to write optimum code to divide a 50 digit number with a 25 digit number??
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
How will you find a duplicate number in a array without negating the nos ?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
What are the types of type qualifiers in c?
how to get the starting address of file stored in harddisk through 'C'program.
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort