belongs to collection: C interview questions, your interviewer might ask
What is the output of the below C code?
#include<stdio.h> int main() { typedef auto int myAutoInt; myAutoInt data = 4; printf("%d",data); return 0; }
compiler error.
Explanation:
typedef already consider as partial storage class, so you can not mix two storage classes at a time.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Answer:
compiler error.
Explanation:
typedef already consider as partial storage class, so you can not mix two storage classes at a time.
need an explanation for this answer? contact us directly to get an explanation for this answer