How can you relate the function with the structure? Explain
with an appropriate example.
No Answer is Posted For this Question
Be the First to Post Answer
Code for 1>"ascii to string" 2>"string to ascii"
1 Answers Aricent, Global Logic,
Write a c program to search an element in an array using recursion
what will be the position of the file marker? a: fseek(ptr,0,SEEK_SET); b: fseek(ptr,0,SEEK_CUR);
main() { int i=10,j=20; j = i, j?(i,j)?i:j:j; printf("%d %d",i,j); }
Write a C program to add two numbers before the main function is called.
Write a Program that Inputs 10 Numbers in an Array and Show the Maximum Number
can you use proc sql to manpulate a data set or would u prefer to use proc report ? if so why ? make up an example and explain in detail
Program to find the largest sum of contiguous integers in the array. O(n)
main() { int *j; { int i=10; j=&i; } printf("%d",*j); }
Write a program to implement the motion of a bouncing ball using a downward gravitational force and a ground-plane friction force. Initially the ball is to be projected in to space with a given velocity vector
Is the following statement a declaration/definition. Find what does it mean? int (*x)[10];
char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }