What are the features of c language?
No Answer is Posted For this Question
Be the First to Post Answer
What are dynamically linked and statically linked libraries?
why Language C is plateform dependent
whether itis a structured language?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
Is it possible to run a c program without using main?If yes HOW??
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
What is pointers in c with example?
Write a function to find the area of a triangle whose length of three sides is given
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
How to write a program for swapping two strings without using 3rd variable and without using string functions.
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year