What are the modifiers available in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
How can I read data from data files with particular formats?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
Between macros and functions,which is better to use and why?
Why pointers are used?
What is the real difference between arrays and pointers?
27 Answers Hexaware, Logic Pro, TCS,
What is the purpose of 'register' keyword?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
what is difference between null and nul in c language
Give me the code of in-order recursive and non-recursive.
Explain how do you use a pointer to a function?