Answer Posted / rahamatulla
Array is collectioan of homogenius data types which stored
in memory allocation
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is string function c?
What is a null string in c?
Explain setjmp()?
What is advantage of pointer in c?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
Why is C language being considered a middle level language?
Why we not create function inside function.
What is atoi and atof in c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What type of function is main ()?
What are the loops in c?
Can we change the value of constant variable in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }