number of times a digit is present in a number
No Answer is Posted For this Question
Be the First to Post Answer
What is restrict keyword in c?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
What is the difference between array_name and &array_name?
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
write a program to copy the string using switch case?
What is the explanation for cyclic nature of data types in c?
What is the difference between void main() and void main (void) give example programme?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol