Why do we need functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
what does static variable mean?
Program to find largest of three numbers without using comparsion operator?
write a program that print itself even if the source file is deleted?
C,c++, Java is all are structural oriented or procedure oriented language..?
how to find turn around time in operating system?
What does 2n 4c mean?
Explain enumerated types.
What are the average number of comparisons required to sort 3 elements?
What is c language in simple words?
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
Is c++ based on c?
#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