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 |
Explain setjmp()?
Explain the concept of "dangling pointers" in C.
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
What is period operator in c?
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
what are the advantages & disadvantages of unions?
How to declare pointer variables?
Define the scope of static variables.
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Explain the difference between null pointer and void pointer.
What is the difference between c and python?