How is null defined in c?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
what is the difference between c and java?
What is the difference between functions getch() and getche()?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What is time complexity c?
Where in memory are my variables stored?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
what is the stackpointer
can any one tel me wt is the question pattern for NIC exam
Is null always defined as 0(zero)?
about c language