Explain the use of 'auto' keyword
No Answer is Posted For this Question
Be the First to Post Answer
Tell me what is null pointer in c?
Can we include one C program into another C program if yes how?
what r the cpu registers r ther?
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
What are the 5 types of organizational structures?
Why do we use & in c?
main() { printf(5+"Vidyarthi Computers"); }
What are predefined functions in c?
What are the two types of functions in c?
What is the difference between fread and fwrite function?
Why the use of alloca() is discouraged?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }