How is pointer initialized in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is Structural oriented language? give some example of this language.....?
What is static identifier?
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
Write a program to print factorial of given number using recursion?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
what is the difference between procedure oriented and object oriented progaming language
Explain what is #line used for?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
What is difference between %d and %i in c?
What is wrong with this initialization?
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
What are the advantages and disadvantages of c language?