What are the disadvantages of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is wrong in this statement?
write a program to remove duplicate from an ordered char array? in c
What does c value mean?
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How do you initialize pointer variables?
What is a void pointer? When is a void pointer used?
What is scope of variable in c?
how to write a program which adds two numbers without using semicolon in c
Explain how do you view the path?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Is c procedural or functional?