program for reversing a selected line word by word when
multiple lines are given without using strrev
No Answer is Posted For this Question
Be the First to Post Answer
i want to know the procedure of qualcomm for getting a job through offcampus
What are macros in C?
Is int a keyword in c?
What is the 'named constructor idiom'?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
What is #error and use of it?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
what are you see during placement time in the student.
0 Answers Goldman Sachs, TCS, Tech Solutions,
How many types of arrays are there in c?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function