What is action and transformation in spark?
No Answer is Posted For this Question
Be the First to Post Answer
printf("%d",(printf("Hello")); What it returns?
Why static variable is used in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain what is a const pointer?
What is the diffences between Windows XP and Windows Visa
Are enumerations really portable?
second highest number in a given set of numbers
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
difference between malloc and calloc
Do character constants represent numerical values?
How does selection sort work in c?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"