Why is c used in embedded systems?
No Answer is Posted For this Question
Be the First to Post Answer
Does sprintf put null character?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
What does %c do in c?
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
how can i get this by using for loop? * ** * **** * ******
Explain bit masking in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Hai why 'c' is the middle language
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.