What is pointer to pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a program?
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
What are comments and how do you insert it in a C program?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
How would you rename a function in C?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
What is the difference between far and near ?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is function pointer and where we will use it
program to print circle structure
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?