4. main()
{
int c=- -2;
printf("c=%d",c);
}
How to delete a node from linked list w/o using collectons?
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
Is there any possibility to create customized header file with c programming language?
Can a pointer be static?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
what is Array?
List the difference between a While & Do While loops?
Explain the difference between malloc() and calloc() in c?
What is header file in c?
What are the two types of structure?
Which is an example of a structural homology?