What are the 5 data types?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use pointer to pointer in c?
The differences between Windows XP and Windows Visa
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Are there namespaces in c?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
Do variables need to be initialized?
What is a C array and illustrate the how is it different from a list.
What is the difference between struct and typedef struct in c?
write a program to sort the elements in a given array in c language
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?