What is a protocol in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
Write a program in c to print 1 121 12321 1234321 123454321
11 Answers ANR, College School Exams Tests, Mu Sigma, Wipro,
Array is an lvalue or not?
what is data structure.in linear and non linear data structures which one is better?Explain
write a program to fined second smallest and largest element in a given series of elements (without sorting)
Q. where is the below variables stored ? - volatile, static, register
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
What is extern c used for?
What are header files in c programming?
What is int main () in c?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above