what is the difference between embedded c and turbo c ?
Answer / aravind
Embedded C has Integrated Development Environment(IDE) and additional predefined functions and other standard libraries including C.
| Is This Answer Correct ? | 3 Yes | 3 No |
Which is better oop or procedural?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
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
Are comments included during the compilation stage and placed in the EXE file as well?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
What is external and internal variables What is dynamic memory allocation what is storage classes in C
find largest of 3 no
What is the relationship between pointers and data structure?
Difference between C and Embedded C?
How can I read in an object file and jump to locations in it?
Can you please explain the difference between exit() and _exit() function?