What is a program flowchart and how does it help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What is the difference between a function and a method in c?
what is the use of call back function in c?tell me with example
Is there any possibility to create customized header file with c programming language?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
what is the difference between %d and %*d in c languaga?
find largest of 3 no
write a c program that prints all multiples of 3between 1 and 50.
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
What are static variables, and where are they stored?