what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
1493why programs in c are running with out #include
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
1528Create 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
XYZ,
2860Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
TCS,
2 2771how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
1479#include
How old is c programming language?
Can you return null in c?
What are volatile variables in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is an auto keyword in c?
What is a char c?
What does struct node * mean?
When should a type cast not be used?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Differentiate between functions getch() and getche().
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
how to capitalise first letter of each word in a given string?
What is pass by reference in c?