What does p mean in physics?
No Answer is Posted For this Question
Be the First to Post Answer
What is the exact difference between '\0' and ""
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
Why do we use int main?
How do you determine if a string is a palindrome?
Should I learn data structures in c or python?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is the scope of local variable in c?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
List out few of the applications that make use of Multilinked Structures?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What is the use of the function in c?
What is the memory allocated by the following definition ? int (*x)[10];