What is a ternary operator in c?
No Answer is Posted For this Question
Be the First to Post Answer
User define function contain thier own address or not.
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
HOW DO YOU HANDLE EXCEPTIONS IN C?
What is identifier in c?
what is default constructor?
Explain the difference between malloc() and calloc() in c?
write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)
26 Answers ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,
how to swap four numbers without using fifth variable?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
Explain the difference between the local variable and global variable in c?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?