Synonymous with pointer array
a) character array
b) ragged array
c) multiple array
d) none
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find given number is even or odd without using any control statement.
Did c have any year 2000 problems?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
Is c procedural or functional?
What are extern variables in c?
The differences between Windows XP and Windows Visa
What is a pointer in c?
how do you programme Carrier Sense Multiple Access
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
What are the modifiers available in c programming language?