Why do we use return in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are static variables, and where are they stored?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
What should malloc() do?
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What are linked lists in c?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
Is boolean a datatype in c?
What is getch?
How can you check to see whether a symbol is defined?