errors in computer programmes are called
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
Can we change the value of constant variable in c?
What are linker error?
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
How to add two numbers without using semicolon n c????
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
write a program to concatenation the string using switch case?
When can a far pointer be used?
Can two or more operators such as and be combined in a single line of program code?
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
What is the purpose of void pointer?
C program to find frequency of each character in a text file?