What is a pointer on a pointer in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the use of a semicolon (;) at the end of every program statement?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
how can we use static and extern?and where can we use this?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
a simple program in c language
What is the meaning of && in c?
What is meant by recursion?
what is structuer?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }