Explain how can you check to see whether a symbol is defined?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
what do structure language means?
Can true be a variable name in c?
How does struct work in c?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
List the different types of c tokens?
what is call by value and call by reference
How can I invoke another program or command and trap its output?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
what is dangling pointer?