What are the 5 data types?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between %d and %*d in C
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
Does free set pointer to null?
What is omp_num_threads?
Where register variables are stored in c?
What is the difference between procedural and declarative language?
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
Explain what is the difference between #include and #include 'file' ?
What is meaning of tree
Write program to remove duplicate in an array?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);