What is period operator in c?

Answer Posted / pavan sai

it is used to retrieve data within the time intervals

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is const volatile variable in c?

577


What is equivalent to ++i+++j?

641


Difference between exit() and _exit() function?

655


How can I remove the leading spaces from a string?

632


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

687






What is the code for 3 questions and answer check in VisualBasic.Net?

1690


What is the use of the function in c?

596


Is it better to use malloc() or calloc()?

647


Why does the call char scanf work?

618


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

686


What is the use of sizeof?

554


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1857


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

635


what is the difference between 123 and 0123 in c?

719


What is operator promotion?

627