please can any one suggest me best useful video tutorials on c
i am science graduate.please help me.u can email me to sas29@in.com
No Answer is Posted For this Question
Be the First to Post Answer
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
what is the difference between exit() and _exit() functions?
why we use pointer in c
how to do in place reversal of a linked list(singly or doubly)?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
Differentiate between functions getch() and getche().
Explain what is the difference between text files and binary files?
Explain how do you generate random numbers in c?
What does sizeof function do?
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?