Write the syntax and purpose of a switch statement in C.
find largest of 3 no
What is the difference between call by value and call by reference in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is difference between arrays and pointers?
What is c value paradox explain?
What are different types of pointers?
what is the flow of execution in cprogram? ex:printf();,scanf();
What happens if a header file is included twice?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
what are brk, sbrk?
what is pointer
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff