What is derived datatype in c?
No Answer is Posted For this Question
Be the First to Post Answer
What standard functions are available to manipulate strings?
Will Macros support multiple arguments ?
Explain what is the heap?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
What are disadvantages of C language.
do you think its fraud or original company?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
How can I read in an object file and jump to locations in it?
What is function pointer c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }