What is I ++ in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What are header files and what are its uses in C programming?
What is header file definition?
write a program for egyptian fractions in c?
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
In how much time you will write this c program? Prime nos from 1 to 1000
Write a c program to demonstrate character and string constants?
What are void pointers in c?
What is the c value paradox and how is it explained?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
What is nested structure with example?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?