a formula,a series of steps,or well defined set of rules for solving a problem
a) algorithem
b) program
c) erdiagram
d) compiler
No Answer is Posted For this Question
Be the First to Post Answer
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Explain what is the use of a semicolon (;) at the end of every program statement?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
Why c is called top down?
Explain what is the stack?
What are preprocessor directives in c?
How can I return multiple values from a function?
What are the uses of a pointer?
Without using main fn and semicolon,print remainder for a given number in C language