4. main()
{
int c=- -2;
printf("c=%d",c);
}
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
What is scope and lifetime of a variable in c?
What is the concatenation operator?
Explain what is the difference between far and near ?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
write a program to display numbers from 1 to 10 and 10 to 1?
where can function pointers be used?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
what is linkage error when it occurs in c program
What is Your Name :)