Explain the concept and use of type void.
No Answer is Posted For this Question
Be the First to Post Answer
How can variables be characterized?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Can we increase size of array in c?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What is the difference between void main() and void main (void) give example programme?
What is d scanf?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
How can I ensure that integer arithmetic doesnt overflow?
how to print 212 as Twohundreds twelve plz provide me ans soon
write a program to display reverse of a number using for loop?