#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Why do we use static in c?
Explain void pointer?
How can I handle floating-point exceptions gracefully?
What does. int *x[](); means ?
Can we use any name in place of argv and argc as command line arguments?
What is calloc malloc realloc in c?
When should you use a type cast?
main() { printf("hello"); fork(); }
What is wrong with this statement? Myname = 'robin';
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
Can a pointer be static?
Write a program on swapping (100, 50)
What is a example of a variable?
In c language can we compile a program without main() function?