What is nested structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning of int *x[]();?
What is the Difference between Class and Struct?
what does ‘segmentation violation’ mean?
what is void pointer?
how to swap four numbers without using fifth variable?
What is NULL pointer?
Why is c fast?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
Write a program to reverse a linked list in c.