Explain what is the difference between #include and #include 'file' ?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
hat is a pointer?
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
How will you write a code for accessing the length of an array without assigning it to another variable?
What is Memory leakage ?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }