What are variables and it what way is it different from constants?
No Answer is Posted For this Question
Be the First to Post Answer
Convert the following expression to postfix and prefix (A+B) * (D-C)
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
What are the two types of functions in c?
what is d pitfalls of registers variables
What is an array? What the different types of arrays in c?
Differentiate between a structure and a union.
What is structure pointer in c?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
write a program to print the all 4digits numbers & whose squares must me even numbers?
Is it better to use malloc() or calloc()?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What is alloca() and why is its use discouraged?