What is a dynamic array in c?
No Answer is Posted For this Question
Be the First to Post Answer
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
how to make a scientific calculater ?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
2. Counting in Lojban, an artificial language developed over the last fourty years, is easier than in most languages The numbers from zero to nine are: 0 no 1 pa 2 re 3 ci 4 vo 5 mk 6 xa 7 ze 8 bi 9 so Larger numbers are created by gluing the digit togather. For Examle 123 is pareci Write a program that reads in a lojban string(representing a no less than or equal to 1,000,000) and output it in numbers.
convert 12345 to 54321 withoutusing strig
Explain the differences between public, protected, private and internal.
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is header file definition?
How does free() know how many bytes to free?
what is different between auto and local static? why should we use local static?
List the difference between a 'copy constructor' and a 'assignment operator' in C?