How many levels of indirection in pointers can you have in a single declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know what is the purpose of 'extern' keyword in a function declaration?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
what is computer
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Why C language is a procedural language?
What is the difference between exit() and _exit() function?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
Is exit(status) truly equivalent to returning the same status from main?
What are inbuilt functions in c?
Where we use clrscr in c?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?