Answer Posted / suresh
press ctrl+f9
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Explain what are multidimensional arrays?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Write program to remove duplicate in an array?
Explain what is a program flowchart and explain how does it help in writing a program?
What is table lookup in c?
What does struct node * mean?
Is c programming hard?
Give the rules for variable declaration?
What is const volatile variable in c?
When should a far pointer be used?
What is return type in c?
What is equivalent to ++i+++j?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the correct declaration of main?
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