where does it flourished?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
what does static variable mean?
what is the use of fflush() function?
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is an auto variable in c?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
Explain how to reverse singly link list.
What is meant by operator precedence?
how do we remove the printed character in printf statement and write next it it
How do you define a string?