why wipro wase
No Answer is Posted For this Question
Be the First to Post Answer
Why c language is called c?
Is there any book to know about Basics of C Language?
HOW DO YOU HANDLE EXCEPTIONS IN C?
how can u print a message without using any library function in c
develop algorithms to add polynomials (i) in one variable
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
Explain what happens if you free a pointer twice?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
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
what are the advantages of a macro over a function?
Can true be a variable name in c?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?