How can I get back to the interactive keyboard if stdin is redirected?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
wap to print "hello world" without using the main function.
Is javascript based on c?
What is a null string in c?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(“ %d\n”,sum); } what is the difference between a=10 and a=010??
What are enums in c?
What are Storage Classes in C ?
32 Answers CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
What is the scope of global variable in c?
How do I convert a string to all upper or lower case?
write the program to find multiplication of 2-D matrix??????????
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.