What does
stand for?
No Answer is Posted For this Question
Be the First to Post Answer
Write a code of a general series where the next element is the sum of last k terms.
why we need function pointers?
Here is a neat trick for checking whether two strings are equal
What is the best way to store flag values in a program?
#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 are two categories of clint-server application development ?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
What is the purpose of main() function?
what is void pointer?
Explain how can you determine the size of an allocated portion of memory?
How do you determine a file’s attributes?