What does sizeof return c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain following declaration int *P(void); and int (*p)(char *a);
What functions are used in dynamic memory allocation in c?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
Is printf a keyword?
Is register a keyword in c?
Write a routine that prints out a 2-D array in spiral order!
Describe how arrays can be passed to a user defined function
What does %p mean c?
Is null a keyword in c?
Describe dynamic data structure in c programming language?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????