What are the types of data files?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between i++ and i+1 ?(in terms of memory)
What are nested functions in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Why c is a procedural language?
Is there anything like an ifdef for typedefs?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
wap in c to accept a number display the total count of digit
What is the use of putchar function?
How can I direct output to the printer?
Tell us something about keyword 'auto'.