Is return a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
why we wont use '&' sing in aceesing the string using scanf
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is the use of gets and puts?
Explain About fork()?
What is the difference between volatile and const volatile?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
sir, i cannot find the way how to write aprogram by using array on queue
Why n++ execute faster than n+1 ?
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is cohesion in c?