What does
do in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
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,
Is c still used in 2019?
What is sizeof in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What does static variable mean in c?
What is actual argument?
what is the program to display your name in any color?
#define d 10+10 main() { printf("%d",d*d); }
What is the difference between GETS();AND SCANF();
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));